DiffNotPossibleException
class
class DiffNotPossibleException implements Exception {
final String msg;
const DiffNotPossibleException([this.msg]);
String toString() => msg == null ? 'DiffNotPossible' : msg;
}
Implements
Exception
Constructors
const DiffNotPossibleException([String msg]) #
Creates a new Object instance.
Object instances have no meaningful state, and are only useful
through their identity. An Object instance is equal to itself
only.
const DiffNotPossibleException([this.msg]);
Methods
String toString() #
Returns a string representation of this object.
String toString() => msg == null ? 'DiffNotPossible' : msg;