Skip to Main Content
C# in a Nutshell
book

C# in a Nutshell

by Ben Albahari, Ted Neward, Peter Drayton
March 2002
Intermediate to advanced content levelIntermediate to advanced
864 pages
31h 8m
English
O'Reilly Media, Inc.
Content preview from C# in a Nutshell

Name

ArgumentException class

Synopsis

This exception indicates that illegal data was passed to a method or constructor call. Note that illegal data is entirely contextual — the data may be a legitimate .NET value, but inappropriate for the use in question. Although .NET languages are type-safe in that you can’t pass a string as a parameter when an integer is expected, there is nothing to keep you from passing a null or invalid value, such as sending (2001, 13, 32) to DateTime’s constructor. However, there is no 32nd day of the 13th month of the year 2001, and if you try to initialize such a date, you’ll get an exception.

The ArgumentException class (or one of its subclasses, ArgumentNullException or ArgumentOutOfRangeException) indicates that a method argument violated such a constraint. If you need to implement this exception in your own code, consider using one of its subclasses instead, since they represent common argument exceptions.

public class ArgumentException : SystemException {
// Public Constructors
   public method ArgumentException();  
   public method ArgumentException(string message);  
   public method ArgumentException(string message, 
        Exception innerException);  
   public method ArgumentException(string message, 
        string paramName);  
   public method ArgumentException(string message, 
        string paramName, Exception innerException);  
// Protected Constructors
   protected method ArgumentException(
        System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# 8.0 in a Nutshell

C# 8.0 in a Nutshell

Joseph Albahari, Eric Johannsen
C# 10 in a Nutshell

C# 10 in a Nutshell

Joseph Albahari
C# in a Nutshell, Second Edition

C# in a Nutshell, Second Edition

Peter Drayton, Ben Albahari, Ted Neward
Code like a Pro in C#

Code like a Pro in C#

Jort Rodenburg

Publisher Resources

ISBN: 0596001819Catalog PageErrata