IsolatedStorageException.cs 757 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.IO.IsolatedStorage.IsolatedstorageException
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) 2002, Ximian, Inc. http://www.ximian.com
  7. //
  8. using System.Globalization;
  9. using System.Runtime.Serialization;
  10. namespace System.IO.IsolatedStorage
  11. {
  12. [Serializable]
  13. public class IsolatedStorageException : Exception
  14. {
  15. public IsolatedStorageException ()
  16. : base (Locale.GetText ("An Isolated storage operation failed."))
  17. {
  18. }
  19. public IsolatedStorageException (string message)
  20. : base (message)
  21. {
  22. }
  23. public IsolatedStorageException (string message, Exception inner)
  24. : base (message, inner)
  25. {
  26. }
  27. protected IsolatedStorageException (SerializationInfo info, StreamingContext context)
  28. : base (info, context)
  29. {
  30. }
  31. }
  32. }