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