System.SysUtils.EArgumentException

From RAD Studio API Documentation
Jump to: navigation, search

System.SysUtils.ExceptionSystem.TObjectEArgumentException

Delphi

EArgumentException = class(Exception);

C++

class PASCALIMPLEMENTATION EArgumentException : public Exception

Properties

Type Visibility Source Unit Parent
class public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

EArgumentException is the exception raised for invalid argument values.

EArgumentException is the exception raised whenever a routine of a method cannot understand an argument.

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.

See Also