Class VitamClientException

    • Constructor Summary

      Constructors 
      Constructor Description
      VitamClientException​(java.lang.String message)
      Basic constructor to indicate a simple error message without stacktrace
      VitamClientException​(java.lang.String message, java.lang.Throwable cause)
      Constructor used to encapsulate a previously thrown exception but with a custom meaningful message
      VitamClientException​(java.lang.Throwable cause)
      Constructor used to encapsulate a previously thrown exception.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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

      • VitamClientException

        public VitamClientException​(java.lang.String message)
        Basic constructor to indicate a simple error message without stacktrace
        Parameters:
        message - message to log
      • VitamClientException

        public VitamClientException​(java.lang.Throwable cause)
        Constructor used to encapsulate a previously thrown exception. A generic message is used.
        Parameters:
        cause - the originating exception
      • VitamClientException

        public VitamClientException​(java.lang.String message,
                                    java.lang.Throwable cause)
        Constructor used to encapsulate a previously thrown exception but with a custom meaningful message
        Parameters:
        message - the message to log throw threw
        cause - the originating exception