mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-17 13:35:26 +00:00
33 lines
711 B
C#
33 lines
711 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Org.BouncyCastle.Crypto
|
|||
|
|
{
|
|||
|
|
public class DataLengthException
|
|||
|
|
: CryptoException
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* base constructor.
|
|||
|
|
*/
|
|||
|
|
public DataLengthException()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* create a DataLengthException with the given message.
|
|||
|
|
*
|
|||
|
|
* @param message the message to be carried with the exception.
|
|||
|
|
*/
|
|||
|
|
public DataLengthException(
|
|||
|
|
string message)
|
|||
|
|
: base(message)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public DataLengthException(
|
|||
|
|
string message,
|
|||
|
|
Exception exception)
|
|||
|
|
: base(message, exception)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|