Files
linux-packaging-mono/mcs/class/System.IO.Compression/SharpCompress/Common/CryptographicException.cs

12 lines
220 B
C#
Raw Normal View History

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