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

Třída pro vyjímky, které jsou fatální a aplikace má jen minimální možnosti se s nimi vypořádat. More...

Inheritance diagram for mhr.appcore.exceptions.AppFatalException:
mhr.appcore.bitmap.exceptions.UnsupportedBitmapException mhr.appcore.exceptions.AllocationException mhr.appcore.exceptions.AlreadyDisposedException mhr.appcore.image.exceptions.ImageException mhr.appcore.image.exceptions.ImageLoadingException mhr.appcore.image.exceptions.ImageSavingException mhr.appcore.image.exceptions.InvalidLayerSpecificPresentationSuppliedException mhr.appcore.image.exceptions.LayerCreationException

Public Member Functions

 AppFatalException ()
 
 AppFatalException (String detailMessage)
 
 AppFatalException (Throwable throwable)
 
 AppFatalException (String detailMessage, Throwable throwable)
 

Detailed Description

Třída pro vyjímky, které jsou fatální a aplikace má jen minimální možnosti se s nimi vypořádat.

Pravděpodobně nedostatek paměti, nebo jiný problém omezující jakékoliv další možnosti.

Definition at line 8 of file AppFatalException.java.

Constructor & Destructor Documentation

mhr.appcore.exceptions.AppFatalException.AppFatalException ( )
inline

Definition at line 10 of file AppFatalException.java.

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

Definition at line 13 of file AppFatalException.java.

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

Definition at line 17 of file AppFatalException.java.

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

Definition at line 21 of file AppFatalException.java.

{
super(detailMessage, throwable);
}

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