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

Základní třída pro vyjímky, které jsou způsobeny například kreslením na nerastrovou vrstvu atd. Tyto výjimky jsou hlášeny klientovy. More...

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

Public Member Functions

 AppNonFatalException ()
 
 AppNonFatalException (String detailMessage)
 
 AppNonFatalException (Throwable throwable)
 
 AppNonFatalException (String detailMessage, Throwable throwable)
 

Detailed Description

Základní třída pro vyjímky, které jsou způsobeny například kreslením na nerastrovou vrstvu atd. Tyto výjimky jsou hlášeny klientovy.

Definition at line 6 of file AppNonFatalException.java.

Constructor & Destructor Documentation

mhr.appcore.exceptions.AppNonFatalException.AppNonFatalException ( )
inline

Definition at line 8 of file AppNonFatalException.java.

{
}
mhr.appcore.exceptions.AppNonFatalException.AppNonFatalException ( String  detailMessage)
inline

Definition at line 11 of file AppNonFatalException.java.

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

Definition at line 15 of file AppNonFatalException.java.

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

Definition at line 19 of file AppNonFatalException.java.

{
super(detailMessage, throwable);
}

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