Class CustomWrapperException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.denodo.vdb.engine.customwrapper.CustomWrapperException
All Implemented Interfaces:
Serializable

public class CustomWrapperException extends Exception
A general purpose Exception subclass intended to be used by Custom Wrappers.
See Also:
  • Constructor Details

    • CustomWrapperException

      public CustomWrapperException(String message)
      Constructs the exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(Throwable).
      Parameters:
      message - the detail message.
    • CustomWrapperException

      public CustomWrapperException(String message, Throwable cause)
      Constructs the exception with the specified detail message and cause.
      Parameters:
      message - the detail message.
      cause - the cause. You can pass a null value, and indicates that the cause is nonexistent or unknown.
  • Method Details