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

ArgumentNullException.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d35a9648e638d0bd7eef248b94750fc4b3ead3d2 (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
//
// System.ArgumentNullException.cs
//
// Author:
//   Joe Shaw (joe@ximian.com)
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com
//

namespace System {

	public class ArgumentNullException : ArgumentException {
		// Constructors
		public ArgumentNullException ()
			: base ("Argument cannot be null")
		{
		}

		public ArgumentNullException (string param_name)
			: base ("Argument cannot be null", param_name)
		{
		}

		public ArgumentNullException (string param_name, string message)
			: base (message, param_name)
		{
		}
	}
}