"Exception" Standard Type
While Elements' Exception Handling can, in theory, raise/throw any type of object, Exception
by convention is the base class for Exceptions.
Type Mapping
- On .NET,
Exception
maps to theSystem.Exception
FCL class. - On Cocoa,
Exception
maps to theFoundation.NSException
class provided by SDKs. - On Java,
Exception
maps to thejava.lang.Throwable
JDK class. - On Island, it is implemented in Island RTL as
RemObjects.Elements.System.Exception
.