23 lines
362 B
C#
23 lines
362 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Org.BouncyCastle.Utilities.IO;
|
|
|
|
[Serializable]
|
|
public class StreamOverflowException : IOException
|
|
{
|
|
public StreamOverflowException()
|
|
{
|
|
}
|
|
|
|
public StreamOverflowException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public StreamOverflowException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|