Class UncheckedException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BeanException, TypeConversionException

public class UncheckedException extends RuntimeException
Unchecked exception and also a wrapper for checked exceptions.
See Also:
  • Field Details

    • cause

      protected final Throwable cause
    • CAUSE_DIV

      protected static final String CAUSE_DIV
      Divider between causes printouts.
      See Also:
    • showCauseDetails

      protected final boolean showCauseDetails
      If set to true stack trace will be enhanced with cause's stack traces.
  • Constructor Details

    • UncheckedException

      public UncheckedException(Throwable t)
    • UncheckedException

      public UncheckedException(Throwable t, boolean showCauseDetails)
    • UncheckedException

      public UncheckedException()
    • UncheckedException

      public UncheckedException(String message)
    • UncheckedException

      public UncheckedException(String message, Throwable t)
    • UncheckedException

      public UncheckedException(String message, Throwable t, boolean showCauseDetails)
  • Method Details