Class ContentTooLongException

All Implemented Interfaces:
Serializable

public class ContentTooLongException extends IOException
Signals that HTTP entity content is too long.
Since:
4.2
See Also:
  • Field Details

  • Constructor Details

    • ContentTooLongException

      public ContentTooLongException(String message)
      Creates a new ContentTooLongException with the specified detail message.
      Parameters:
      message - exception message
    • ContentTooLongException

      public ContentTooLongException(String format, Object... args)
      Constructs a new ContentTooLongException with the specified detail message.
      Parameters:
      format - The exception detail message format; see String.format(String, Object...).
      args - The exception detail message arguments; see String.format(String, Object...).
      Since:
      4.4.11