Sign in
chromium
/
external
/
github.com
/
brendan-duncan
/
archive
/
refs/heads/4.0.backup
/
.
/
lib
/
src
/
util
/
archive_exception.dart
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
);
}