summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/ArgumentOutOfRangeException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/shared/System/ArgumentOutOfRangeException.cs')
-rw-r--r--src/mscorlib/shared/System/ArgumentOutOfRangeException.cs97
1 files changed, 97 insertions, 0 deletions
diff --git a/src/mscorlib/shared/System/ArgumentOutOfRangeException.cs b/src/mscorlib/shared/System/ArgumentOutOfRangeException.cs
new file mode 100644
index 0000000000..4721a503b6
--- /dev/null
+++ b/src/mscorlib/shared/System/ArgumentOutOfRangeException.cs
@@ -0,0 +1,97 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+/*=============================================================================
+**
+**
+**
+** Purpose: Exception class for method arguments outside of the legal range.
+**
+**
+=============================================================================*/
+
+using System.Globalization;
+using System.Runtime.Serialization;
+
+namespace System
+{
+ // The ArgumentOutOfRangeException is thrown when an argument
+ // is outside the legal range for that argument.
+ public class ArgumentOutOfRangeException : ArgumentException
+ {
+ private Object _actualValue;
+
+ // Creates a new ArgumentOutOfRangeException with its message
+ // string set to a default message explaining an argument was out of range.
+ public ArgumentOutOfRangeException()
+ : base(SR.Arg_ArgumentOutOfRangeException)
+ {
+ HResult = __HResults.COR_E_ARGUMENTOUTOFRANGE;
+ }
+
+ public ArgumentOutOfRangeException(String paramName)
+ : base(SR.Arg_ArgumentOutOfRangeException, paramName)
+ {
+ HResult = __HResults.COR_E_ARGUMENTOUTOFRANGE;
+ }
+
+ public ArgumentOutOfRangeException(String paramName, String message)
+ : base(message, paramName)
+ {
+ HResult = __HResults.COR_E_ARGUMENTOUTOFRANGE;
+ }
+
+ public ArgumentOutOfRangeException(String message, Exception innerException)
+ : base(message, innerException)
+ {
+ HResult = __HResults.COR_E_ARGUMENTOUTOFRANGE;
+ }
+
+ // We will not use this in the classlibs, but we'll provide it for
+ // anyone that's really interested so they don't have to stick a bunch
+ // of printf's in their code.
+ public ArgumentOutOfRangeException(String paramName, Object actualValue, String message)
+ : base(message, paramName)
+ {
+ _actualValue = actualValue;
+ HResult = __HResults.COR_E_ARGUMENTOUTOFRANGE;
+ }
+
+ protected ArgumentOutOfRangeException(SerializationInfo info, StreamingContext context)
+ : base(info, context)
+ {
+ throw new PlatformNotSupportedException();
+ }
+
+ public override void GetObjectData(SerializationInfo info, StreamingContext context)
+ {
+ base.GetObjectData(info, context);
+ }
+
+ public override String Message
+ {
+ get
+ {
+ String s = base.Message;
+ if (_actualValue != null)
+ {
+ String valueMessage = SR.Format(SR.ArgumentOutOfRange_ActualValue, _actualValue.ToString());
+ if (s == null)
+ return valueMessage;
+ return s + Environment.NewLine + valueMessage;
+ }
+ return s;
+ }
+ }
+
+ // Gets the value of the argument that caused the exception.
+ // Note - we don't set this anywhere in the class libraries in
+ // version 1, but it might come in handy for other developers who
+ // want to avoid sticking printf's in their code.
+ public virtual Object ActualValue
+ {
+ get { return _actualValue; }
+ }
+ }
+}