Class FocusException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FocusVetoException

public class FocusException extends PropException
Focus exception event when focus cannot be changed.
Author:
Christopher Mindus
See Also:
  • Constructor Details

    • FocusException

      public FocusException(GProp<?> property)
      Creates a focus exception with an empty detail message.
      Parameters:
      property - the originator property.
      Throws:
      NullPointerException - if property parameter is null.
    • FocusException

      public FocusException(GProp<?> property, String message)
      Creates a focus exception with a message.
      Parameters:
      property - the originator property.
      message - the detail message.
      Throws:
      NullPointerException - if property parameter is null.
    • FocusException

      public FocusException(GProp<?> property, String message, Throwable exception)
      Creates a focus exception with a message and an exception cause.
      Parameters:
      property - the originator property.
      message - the detail message.
      exception - the exception, i.e. the real cause.
      Throws:
      NullPointerException - if property parameter is null.