Dart DocumentationdormDormError

DormError class

class DormError extends Error {
 
 final String message;

 DormError(this.message);

 String toString() {
   return message;
 }
}

Extends

Error > DormError

Constructors

new DormError(String message) #

DormError(this.message);

Properties

final String message #

final String message

final StackTrace stackTrace #

inherited from Error
external StackTrace get stackTrace;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() {
 return message;
}