Class TooManyRequestsException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.owasp.dependencycheck.utils.TooManyRequestsException
All Implemented Interfaces:
Serializable

@ThreadSafe public class TooManyRequestsException extends Exception
An exception used when the server has blocked the requests due to too many requests.
Author:
Jeremy Long
See Also:
  • Constructor Details

    • TooManyRequestsException

      public TooManyRequestsException()
      Creates a new TooManyRequestsException.
    • TooManyRequestsException

      public TooManyRequestsException(String msg)
      Creates a new TooManyRequestsException.
      Parameters:
      msg - a message for the exception.
    • TooManyRequestsException

      public TooManyRequestsException(Throwable ex)
      Creates a new TooManyRequestsException.
      Parameters:
      ex - the cause of the exception.
    • TooManyRequestsException

      public TooManyRequestsException(String msg, Throwable ex)
      Creates a new TooManyRequestsException.
      Parameters:
      msg - a message for the exception.
      ex - the cause of the exception.