Exception Summary |
ArgumentException |
The exception that is thrown when one of the arguments provided to a method is not valid. |
ArgumentNullException |
The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument. |
ArgumentOutOfRangeException |
The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method. |
ArithmeticException |
The exception that is thrown for errors in an arithmetic, casting, or conversion operation. |
FormatException |
The exception that is thrown when the format of an argument does not meet the parameter specifications of the invoked method. |
InvalidOperationException |
The exception that is thrown when a method call is invalid for the object's current state. |
NotImplementedException |
The exception that is thrown when a requested method or operation is not implemented. |
NotSupportedException |
The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked
functionality. |
ObjectDisposedException |
The exception that is thrown when an operation is performed on a disposed object. |
OverflowException |
The exception that is thrown when an arithmetic, casting, or conversion operation in a checked context results in an overflow. |
SystemException |
Defines the base class for predefined exceptions in the System namespace. |
UnauthorizedAccessException |
The exception that is thrown when the operating system denies access because of an I/O error or a specific type of security error. |