View source code
Display the source code in object.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Class object.Error

The base class of all unrecoverable runtime errors.

class Error
  : Throwable ;

This represents the category of Throwable objects that are not safe to catch and handle. In principle, one should not catch Error objects, 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.

Constructors

NameDescription
this (msg, nextInChain) Creates a new instance of Error. The nextInChain parameter is used internally and should always be null when passed by user code. This constructor does not automatically throw the newly-created Error; the throw statement should be used for that purpose.

Fields

NameTypeDescription
bypassedException ThrowableThe first Exception which was bypassed when this Error was thrown, or null if no Exceptions were pending.
file stringThe file name of the D source code corresponding with where the error was thrown from.
info object.Throwable.TraceInfoThe 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).
infoDeallocator nothrow void function(object.Throwable.TraceInfo)If set, this is used to deallocate the TraceInfo on destruction.
line ulongThe line number of the D source code corresponding with where the error was thrown from.
msg stringA message describing the error.

Properties

NameTypeDescription
next[get] inout(Throwable)
next[set] ThrowableReplace next in chain with tail. Use chainTogether instead if at all possible.

Methods

NameDescription
chainTogether () Append e2 to chain of exceptions that starts with e1.
factory (classname) Create instance of class specified by the fully qualified name classname. The class must either have no constructors or have a default constructor.
message () Get the message describing the error.
opApply (dg) Loop over the chain of Throwables.
opCmp (o) Compare with another Object obj.
opEquals (o) Test whether this is equal to o. The default implementation only compares by identity (using the is operator). Generally, overrides and overloads for opEquals should attempt to compare objects by their contents. A class will most likely want to add an overload that takes your specific type as the argument and does the content comparison. Then you can override this and forward it to your specific typed overload with a cast. Remember to check for null on the typed overload.
refcount ()
toHash () Compute hash function for Object.
toString () Overrides Object.toString and returns the error message. Internally this forwards to the toString overload that takes a sink delegate.
toString () The Throwable hierarchy uses a toString overload that takes a sink delegate to avoid GC allocations, which cannot be performed in certain error situations. Override this toString method to customize the error message.

Example

bool gotCaught;
try
{
    throw new Error("msg");
}
catch (Error e)
{
    gotCaught = true;
    writeln(e.msg); // "msg"
}
assert(gotCaught);

Authors

Walter Bright, Sean Kelly

License

Boost License 1.0.