Class EventException

All Implemented Interfaces:
Serializable

public class EventException extends Exception
Since:
1.0.0
See Also:
  • Constructor Details

    • EventException

      public EventException(Throwable throwable)
      Constructs a new EventException based on the given Exception
      Parameters:
      throwable - Exception that triggered this Exception
      Since:
      1.0.0
    • EventException

      public EventException()
      Constructs a new EventException
      Since:
      1.0.0
    • EventException

      public EventException(Throwable cause, String message)
      Constructs a new EventException with the given message
      Parameters:
      cause - The exception that caused this
      message - The message
      Since:
      1.0.0
    • EventException

      public EventException(String message)
      Constructs a new EventException with the given message
      Parameters:
      message - The message
      Since:
      1.0.0
  • Method Details

    • getCause

      public Throwable getCause()
      If applicable, returns the Exception that triggered this Exception
      Overrides:
      getCause in class Throwable
      Returns:
      Inner exception, or null if one does not exist
      Since:
      1.0.0