Class VeniceHttpException

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getHttpStatusCode()
      If this exception is caught in handling an http request, what status code should be returned? Exceptions that extend VeniceException can override this for different behavior
      java.lang.String getMessage()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • VeniceHttpException

        public VeniceHttpException​(int statusCode)
      • VeniceHttpException

        public VeniceHttpException​(int statusCode,
                                   java.lang.String message)
      • VeniceHttpException

        public VeniceHttpException​(int statusCode,
                                   java.lang.String message,
                                   ErrorType type)
      • VeniceHttpException

        public VeniceHttpException​(int statusCode,
                                   java.lang.Throwable cause)
      • VeniceHttpException

        public VeniceHttpException​(int statusCode,
                                   java.lang.Throwable cause,
                                   ErrorType type)
      • VeniceHttpException

        public VeniceHttpException​(int statusCode,
                                   java.lang.String message,
                                   java.lang.Throwable cause,
                                   ErrorType type)
      • VeniceHttpException

        public VeniceHttpException​(int statusCode,
                                   java.lang.String message,
                                   java.lang.Throwable cause)
    • Method Detail

      • getHttpStatusCode

        public int getHttpStatusCode()
        Description copied from class: VeniceException
        If this exception is caught in handling an http request, what status code should be returned? Exceptions that extend VeniceException can override this for different behavior
        Overrides:
        getHttpStatusCode in class VeniceException
        Returns:
        500 (Internal Server Error)
      • getMessage

        public java.lang.String getMessage()
        Overrides:
        getMessage in class java.lang.Throwable