Get the message describing the error. Base behavior is to return the Throwable.msg field. Override to return some other error message.
Loop over the chain of Throwables.
Replace next in chain with tail. Use chainTogether instead if at all possible.
Append e2 to chain of exceptions that starts with e1.
The file name of the D source code corresponding with where the error was thrown from.
The stack trace of where the error happened. This is an opaque object that can either be converted to string, or iterated over with foreach to extract the items in the stack trace (as strings).
The line number of the D source code corresponding with where the error was thrown from.
A message describing the error.
Convert Object to a human readable string.
Compute hash function for Object.
Compare with another Object obj.
Test whether this is equal to o. The default implementation only compares by identity (using the is operator). Generally, overrides for opEquals should attempt to compare objects by their contents.
Create instance of class specified by the fully qualified name classname. The class must either have no constructors or have a default constructor.
The base class of all thrown objects.
All thrown objects must inherit from Throwable. Class Exception, which derives from this class, represents the category of thrown objects that are safe to catch and handle. In principle, one should not catch Throwable objects that are not derived from Exception, as they represent unrecoverable runtime errors. Certain runtime guarantees may fail to hold when these errors are thrown, making it unsafe to continue execution after catching them.