Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IsolatedStorageException.cs « System.IO.IsolatedStorage « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51268d6555041a75f7593e3521c92a12366ae403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// System.IO.IsolatedStorage.IsolatedstorageException
//
// Author: Duncan Mak (duncan@ximian.com)
//
// (C) 2002, Ximian, Inc. http://www.ximian.com
//

using System.Globalization;
using System.Runtime.Serialization;

namespace System.IO.IsolatedStorage
{
	[Serializable]
		public class IsolatedStorageException : Exception
	{
		public IsolatedStorageException ()
			: base (Locale.GetText ("An Isolated storage operation failed."))
		{
		}

		public IsolatedStorageException (string message)
			: base (message)
		{
		}

		public IsolatedStorageException (string message, Exception inner)
			: base (message, inner)
		{
		}

		protected IsolatedStorageException (SerializationInfo info, StreamingContext context)
			: base (info, context)
		{
		}
	}
}