Dart API Referencedart:cryptoHashException

HashException class

HashExceptions are thrown on invalid use of a Hash object.

class HashException {
 HashException(String this.message);
 toString() => "HashException: $message";
 String message;
}

Constructors

new HashException(String message) #

HashException(String this.message);

Properties

String message #

String message

Methods

dynamic toString() #

Returns a string representation of this object.

docs inherited from Object
toString() => "HashException: $message";