API:System.Math.EInvalidArgument

From RAD Studio API Documentation
Jump to: navigation, search

System.SysUtils.EMathErrorSystem.SysUtils.EExternalSystem.SysUtils.ExceptionSystem.TObjectEInvalidArgument

Delphi

EInvalidArgument = class(EMathError) end;

C++

class PASCALIMPLEMENTATION EInvalidArgument : public System::Sysutils::EMathError

Properties

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

Description

EMathError is the base exception class for floating-point math errors.

System.Math.EInvalidArgument inherits from System.SysUtils.EMathError. All content below this line refers to System.SysUtils.EMathError.

EMathError is the base exception class for floating-point math errors.

EMathError is the base class for floating-point math exception classes. EMathError itself is never raised.

The following exceptions descend from EMathError:



Exception Meaning

EInvalidArgument

Parameter out of range

EInvalidOp

Processor encountered an undefined instruction

EOverflow

Floating-point operation produced result too large to store

EUnderflow

Floating-point operation produced result with no precision

EZeroDivide

Attempt to divide by zero



Run-time exception information is saved in fields provided by EExternal.

See Also