blob: e4d094c38fcfb128e65504859431b39f374f5925 [file] [log] [blame]
/**
* An exception thrown when there was a problem in the image library.
*/
class ImageException implements Exception {
/// A message describing the error.
final String message;
ImageException(this.message);
String toString() => 'ImageException: $message';
}