Class Exception
Inheritance
Error
Exception
Constructors
(constructor)(message)
Constructs a new instance of the Exception class
Declaration
constructor(message?: string);
Parameters
| Type |
Name |
Description |
| string |
message |
|
Properties
innerException
Declaration
innerException: Error | Exception;
Property Value
name
Declaration
Property Value
Methods
toJSON()
Declaration
toJSON(): {
name: string;
innerException: Error | Exception;
message: string;
};
Returns
| Type |
Description |
| {
name: string;
innerException: Error | Exception;
message: string;
} |
|
toString()
Declaration
Returns