juno.base.core Module

Licence
See licence.txt for use and distribution terms.

class ArgumentException: object.Exception;

The exception thrown when one of the arguments provided to a method is not valid.

class ArgumentNullException: juno.base.core.ArgumentException;

The exception thrown when a null reference is passed to a method that does not accept it as a valid argument.

class ArgumentOutOfRangeException: juno.base.core.ArgumentException;

The exception that is thrown when the value of an argument passed to a method is outside the allowable range of values.

class FormatException: object.Exception;

The exception thrown when the format of an argument does not meet the parameter specifications of the invoked method.

class InvalidCastException: object.Exception;

The exception thrown for invalid casting.

class InvalidOperationException: object.Exception;

The exception thrown when a method call is invalid.

class NotImplementedException: object.Exception;

The exception thrown when a requested method or operation is not implemented.

class NotSupportedException: object.Exception;

The exception thrown when an invoked method is not supported.

class NullReferenceException: object.Exception;

The exception thrown when there is an attempt to dereference a null reference.

class UnauthorizedAccessException: object.Exception;

The exception thrown when the operating system denies access.

class SecurityException: object.Exception;

The exception thrown when a security error is detected.

class ArithmeticException: object.Exception;

The exception thrown for errors in an arithmetic, casting or conversion operation.

class OverflowException: juno.base.core.ArithmeticException;

The exception thrown when an arithmetic, casting or conversion operation results in an overflow.