Class OverflowException

All Implemented Interfaces:
Serializable

public class OverflowException extends IOException
An exception that is thrown if a buffer would overflow as a result of a write operation.
See Also:
  • Constructor Details

    • OverflowException

      public OverflowException()
      Constructs a new exception with null as its detail message.
    • OverflowException

      public OverflowException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - The specified detail message.
    • OverflowException

      public OverflowException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The specified cause of this exception.
    • OverflowException

      public OverflowException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The specified detail message.
      cause - The specified cause of this exception.