Files
sharpcompress/SharpCompress/Common/CryptographicException.cs
2013-04-28 12:32:55 +01:00

12 lines
229 B
C#

using System;
namespace SharpCompress.Common
{
public class CryptographicException : Exception
{
public CryptographicException(string message)
: base(message)
{
}
}
}