10 lines
220 B
C#
10 lines
220 B
C#
|
namespace SharpCompress.Common
|
|||
|
{
|
|||
|
internal class IncompleteArchiveException : ArchiveException
|
|||
|
{
|
|||
|
public IncompleteArchiveException(string message)
|
|||
|
: base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|