Dart API Referencedart:coreimplExceptionImplementation

ExceptionImplementation Class

Implements

Exception

Constructors

Code const ExceptionImplementation([msg = null]) #

const ExceptionImplementation([msg = null]) : _msg = msg;

Methods

Code String toString() #

String toString() => (_msg === null) ? "Exception" : "Exception: $_msg";