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) { } }