mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
28 lines
481 B
C#
28 lines
481 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Crypto
|
|
{
|
|
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE)
|
|
[Serializable]
|
|
#endif
|
|
public class CryptoException
|
|
: Exception
|
|
{
|
|
public CryptoException()
|
|
{
|
|
}
|
|
|
|
public CryptoException(
|
|
string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public CryptoException(
|
|
string message,
|
|
Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|
|
}
|