blob: bfaaffe35bb82b4aa9b0463e10ee70a0dbc4f380 [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';
}