mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 13:35:28 +00:00
10 lines
227 B
C#
10 lines
227 B
C#
namespace SharpCompress.Common
|
|
{
|
|
public class IncompleteArchiveException : ArchiveException
|
|
{
|
|
public IncompleteArchiveException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
} |