Dart API Referencedart:coreNotImplementedException

NotImplementedException class

class NotImplementedException implements Exception {
  const NotImplementedException([String message]) : this._message = message;
  String toString() => (this._message !== null
                        ? "NotImplementedException: $_message"
                        : "NotImplementedException");
  final String _message;
}

Implements

Exception

Constructors

const NotImplementedException([String message]) #

const NotImplementedException([String message]) : this._message = message;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => (this._message !== null
                      ? "NotImplementedException: $_message"
                      : "NotImplementedException");