12 lines
220 B
C#
Raw Normal View History

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