Class InternalErrorException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.denodo.util.exceptions.InternalErrorException
All Implemented Interfaces:
Serializable

public class InternalErrorException extends Exception
Signals that a serious error ocurrs during a method execution.
See Also:
  • Constructor Details

    • InternalErrorException

      public InternalErrorException(Exception exception)
      Creates an InternalErrorException with the real exception encapsulated.
      Parameters:
      exception - the real exception encapsulated.
  • Method Details

    • getMessage

      public String getMessage()
      Returns the detail message string of the encapsulated exception.
      Overrides:
      getMessage in class Throwable
      Returns:
      the detail message string of the encapsulated exception (which may be null).
    • getEncapsulatedException

      public Exception getEncapsulatedException()
      Returns the encapsulated exception.
      Returns:
      the encapsulated exception.
    • printStackTrace

      public void printStackTrace()
      Prints this exception and its backtrace to the standard error stream.
      Overrides:
      printStackTrace in class Throwable
    • printStackTrace

      public void printStackTrace(PrintStream printStream)
      Prints this exception and its backtrace to the specified print stream.
      Overrides:
      printStackTrace in class Throwable
      Parameters:
      printStream - PrintStream to use for output.
    • printStackTrace

      public void printStackTrace(PrintWriter printWriter)
      Prints this exception and its backtrace to the specified print writer.
      Overrides:
      printStackTrace in class Throwable
      Parameters:
      printWriter - PrintWriter to use for output.