mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-11 03:27:11 +00:00
12 lines
231 B
C#
12 lines
231 B
C#
|
|
namespace SharpCompress.Common
|
|
{
|
|
public class IncompleteArchiveException : ArchiveException
|
|
{
|
|
public IncompleteArchiveException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|