BizHawk/BizHawk.Client.Common/SharpCompress/Common/CryptographicException.cs

12 lines
218 B
C#

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