Class FocusVetoException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AppBusyException

public class FocusVetoException extends FocusException
Focus veto exception event when focus was rejected by a focus veto capable party.
Author:
Christopher Mindus
See Also:
  • Constructor Details

    • FocusVetoException

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

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

      public FocusVetoException(GProp<?> property, String message, Throwable exception)
      Creates a focus veto 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.