App
Public Member Functions | List of all members
mhr.appcore.image.exceptions.ImageStateException Class Reference

Výjimka pro případ, že danou operaci na obraze nelze provést vzhledem k jeho stavu, např. mazání poslední vrstvy. More...

Inheritance diagram for mhr.appcore.image.exceptions.ImageStateException:
mhr.appcore.exceptions.AppNonFatalException

Public Member Functions

 ImageStateException ()
 
 ImageStateException (String detailMessage)
 
 ImageStateException (Throwable throwable)
 
 ImageStateException (String detailMessage, Throwable throwable)
 

Detailed Description

Výjimka pro případ, že danou operaci na obraze nelze provést vzhledem k jeho stavu, např. mazání poslední vrstvy.

Definition at line 8 of file ImageStateException.java.

Constructor & Destructor Documentation

mhr.appcore.image.exceptions.ImageStateException.ImageStateException ( )
inline

Definition at line 10 of file ImageStateException.java.

{
}
mhr.appcore.image.exceptions.ImageStateException.ImageStateException ( String  detailMessage)
inline

Definition at line 13 of file ImageStateException.java.

{
super(detailMessage);
}
mhr.appcore.image.exceptions.ImageStateException.ImageStateException ( Throwable  throwable)
inline

Definition at line 17 of file ImageStateException.java.

{
super(throwable);
}
mhr.appcore.image.exceptions.ImageStateException.ImageStateException ( String  detailMessage,
Throwable  throwable 
)
inline

Definition at line 21 of file ImageStateException.java.

{
super(detailMessage, throwable);
}

The documentation for this class was generated from the following file: