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