BehaviourError

* Contains the Exception information

@safe
@recordType("BDDError")
struct BehaviourError {
ulong line;
string file;
}

Members

Variables

msg
string msg;

Error message in the Exception

trace
string[] trace;

. Exception line trace of in the exception

Mixed In Members

From mixin HiBONRecord!(q{ this(Throwable e) nothrow @trusted { import std.exception : assumeWontThrow; import std.stdio; import std.string : splitLines; msg = e.msg; trace = assumeWontThrow(e.toString.splitLines); line = e.line; file = e.file; } })

recordName
string recordName()

Get the record type name set by @recordType("name")