Dart API Referencedart:coreExpectException

ExpectException class

class ExpectException implements Exception {
  ExpectException(this.message);
  String toString() => message;
  String message;
}

Implements

Exception

Constructors

new ExpectException(String message) #

ExpectException(this.message);

Properties

String message #

String message;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => message;