blob: a8fedb0ba0c5457f9396dfb2cf467a2a68403181 [file] [log] [blame] [edit]
/// An exception thrown when there was a problem in the archive library.
class ArchiveException extends FormatException {
ArchiveException(String message) : super(message);
}