Tue Sep 10 12:12:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System.IO.IsolatedStorage / IsolatedStorageException.cs
1 //
2 // System.IO.IsolatedStorage.IsolatedstorageException
3 //
4 // Author: Duncan Mak (duncan@ximian.com)
5 //
6 // (C) 2002, Ximian, Inc. http://www.ximian.com
7 //
8
9 using System.Globalization;
10 using System.Runtime.Serialization;
11
12 namespace System.IO.IsolatedStorage
13 {
14         [Serializable]
15                 public class IsolatedStorageException : Exception
16         {
17                 public IsolatedStorageException ()
18                         : base (Locale.GetText ("An Isolated storage operation failed."))
19                 {
20                 }
21
22                 public IsolatedStorageException (string message)
23                         : base (message)
24                 {
25                 }
26
27                 public IsolatedStorageException (string message, Exception inner)
28                         : base (message, inner)
29                 {
30                 }
31
32                 protected IsolatedStorageException (SerializationInfo info, StreamingContext context)
33                         : base (info, context)
34                 {
35                 }
36         }
37 }