Dart API Referencedart:mirrorsMirrorException

MirrorException class

A MirrorException is used to indicate errors within the mirrors framework.

class MirrorException implements Exception {
  const MirrorException(String this._message);
  String toString() => "MirrorException: '$_message'";
  final String _message;
}

Implements

Exception

Constructors

const MirrorException(String _message) #

const MirrorException(String this._message);

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "MirrorException: '$_message'";