Files
sharpcompress/SharpCompress/Common/ArchiveException.cs

12 lines
217 B
C#
Raw Permalink Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common
{
public class ArchiveException : Exception
{
public ArchiveException(string message)
: base(message)
{
}
}
2013-04-28 12:32:55 +01:00
}