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

Error.cs « System.Data.Entity « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40a57cee7743608726dbf69bdbbcfdd22ed94bcb (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
namespace System.Data.Entity
{
	static class Error
	{
		public static Exception ArgumentNull (string paramName)
		{
			return new ArgumentNullException (paramName);
		}

		public static Exception ArgumentOutOfRange (string paramName)
		{
			return new ArgumentOutOfRangeException (paramName);
		}

		public static Exception NotImplemented ()
		{
			return new NotImplementedException ();
		}

		public static Exception NotSupported ()
		{
			return new NotSupportedException ();
		}
	}
}