System.SysUtils.EArgumentOutOfRangeException

Delphi
EArgumentOutOfRangeException = class(EArgumentException);
C++
class PASCALIMPLEMENTATION EArgumentOutOfRangeException : public EArgumentException
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | System.SysUtils.pas System.SysUtils.hpp |
System.SysUtils | System.SysUtils |
Description
EArgumentOutOfRangeException is the exception raised for argument values that exceed an allowed range.
EArgumentOutOfRangeException is the exception raised whenever a routine of a method cannot understand an argument. The argument is expected to fall into a certain range, but the actual passed value is invalid.
Note: Not all routines raise this exception. If such an exception is caught, be sure to check that the parameters passed to the called function are correct.