msgraph.graph.exception

Exception type definitions
License: BSL-1.0.
template basicGraphExceptionCtors()
pure nothrow @nogc @safe this(string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null);
pure nothrow @nogc @safe this(string msg, Throwable next, string file = __FILE__, size_t line = __LINE__);
pure nothrow @nogc @safe this(string msg, JSONValue detail, string file = __FILE__, size_t line = __LINE__, Throwable next = null);
pure nothrow @nogc @safe this(string msg, JSONValue detail, Throwable next, string file = __FILE__, size_t line = __LINE__);
class GraphException: object.Exception;
pure nothrow @nogc @safe this(string msg, string file = __FILE__, size_t line = __LINE__, Throwable next = null);
pure nothrow @nogc @safe this(string msg, Throwable next, string file = __FILE__, size_t line = __LINE__);
pure nothrow @nogc @safe this(string msg, JSONValue detail, string file = __FILE__, size_t line = __LINE__, Throwable next = null);
pure nothrow @nogc @safe this(string msg, JSONValue detail, Throwable next, string file = __FILE__, size_t line = __LINE__);
Parameters:
string msg The message for the exception.
Throwable next The previous exception in the chain of exceptions.
string file The file where the exception occurred.
size_t line The line number where the exception occurred.
JSONValue detail The detail information with JSON
const pure nothrow @nogc const(JSONValue) detail();
class AuthorizeException: msgraph.graph.exception.GraphException;