App
Public Member Functions | List of all members
mhr.appcore.utils.NotImplementedException Class Reference

Třída pro rychlý vývoj, umožní neimplementování metody aniž by kompilátor protestoval. More...

Inheritance diagram for mhr.appcore.utils.NotImplementedException:

Public Member Functions

 NotImplementedException ()
 
 NotImplementedException (String detailMessage)
 
 NotImplementedException (Throwable throwable)
 
 NotImplementedException (String detailMessage, Throwable throwable)
 

Detailed Description

Třída pro rychlý vývoj, umožní neimplementování metody aniž by kompilátor protestoval.

Definition at line 6 of file NotImplementedException.java.

Constructor & Destructor Documentation

mhr.appcore.utils.NotImplementedException.NotImplementedException ( )
inline

Definition at line 8 of file NotImplementedException.java.

{
}
mhr.appcore.utils.NotImplementedException.NotImplementedException ( String  detailMessage)
inline

Definition at line 11 of file NotImplementedException.java.

{
super(detailMessage);
}
mhr.appcore.utils.NotImplementedException.NotImplementedException ( Throwable  throwable)
inline

Definition at line 15 of file NotImplementedException.java.

{
super(throwable);
}
mhr.appcore.utils.NotImplementedException.NotImplementedException ( String  detailMessage,
Throwable  throwable 
)
inline

Definition at line 19 of file NotImplementedException.java.

{
super(detailMessage, throwable);
}

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