Package com.iizix.gyro
Class FocusVetoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.iizix.prop.PropException
com.iizix.gyro.FocusException
com.iizix.gyro.FocusVetoException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AppBusyException
Focus veto exception event when focus was rejected by a focus veto capable party.
- Author:
- Christopher Mindus
- See Also:
Constructor Summary
ConstructorsConstructorDescriptionFocusVetoException(GProp<?> property) Creates a focus veto exception with an empty detail message.FocusVetoException(GProp<?> property, String message) Creates a focus veto exception with a message.FocusVetoException(GProp<?> property, String message, Throwable exception) Creates a focus veto exception with a message and an exception cause.Method Summary
Methods inherited from class com.iizix.prop.PropException
getProperty, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
Constructor Details
FocusVetoException
Creates a focus veto exception with an empty detail message.- Parameters:
property- the originator property.- Throws:
NullPointerException- ifpropertyparameter is null.
FocusVetoException
Creates a focus veto exception with a message.- Parameters:
property- the originator property.message- the detail message.- Throws:
NullPointerException- ifpropertyparameter is null.
FocusVetoException
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- ifpropertyparameter is null.