12 lines
208 B
C#
12 lines
208 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharpCompress.Common
|
|||
|
{
|
|||
|
internal class ArchiveException : Exception
|
|||
|
{
|
|||
|
public ArchiveException(string message)
|
|||
|
: base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|