Class OperationNotFoundException

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID
      Serial number for inter-operability with different versions.
    • Constructor Summary

      Constructors 
      Constructor Description
      OperationNotFoundException()
      Construct an exception with no detail message.
      OperationNotFoundException​(java.lang.String message)
      Construct an exception with the specified detail message.
      OperationNotFoundException​(java.lang.String message, java.lang.Throwable cause)
      Construct an exception with the specified detail message and cause.
    • 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
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        Serial number for inter-operability with different versions.
        See Also:
        Constant Field Values
    • Constructor Detail

      • OperationNotFoundException

        public OperationNotFoundException()
        Construct an exception with no detail message.
      • OperationNotFoundException

        public OperationNotFoundException​(java.lang.String message)
        Construct an exception with the specified detail message.
        Parameters:
        message - The details message.
      • OperationNotFoundException

        public OperationNotFoundException​(java.lang.String message,
                                          java.lang.Throwable cause)
        Construct an exception with the specified detail message and cause.
        Parameters:
        message - The details message.
        cause - The cause for this exception.