Class ComponentConstructionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.espirit.firstspirit.ui.gadgets.ComponentConstructionException
All Implemented Interfaces:
Serializable

public class ComponentConstructionException extends RuntimeException
Exception to notify about a problem occuring during construction of a component. The exception is given a level to inform about the severeness of the problem and is treated by the Gadget-Framework accordingly.
Since:
4.2.405
See Also:
  • Constructor Details

    • ComponentConstructionException

      public ComponentConstructionException(ComponentConstructionException.Level level, String message)
      Construct the exception with a message.
      Parameters:
      level - The error level of this exception.
      message - The message.
      Since:
      4.2.405
    • ComponentConstructionException

      public ComponentConstructionException(ComponentConstructionException.Level level, String message, Throwable cause)
      Construct the exception with a message and cause.
      Parameters:
      level - The error level of this exception.
      message - The message.
      cause - The initial cause.
      Since:
      4.2.405
  • Method Details