|
Fido Alpha 3.2 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--fido.db.FidoException
Indicates an error occured in the fido server. This is the superclass for all exceptions thrown from the Fido server. This was done because only methods are invoked only two ways:
The reason to keep each exception its own class instead of every method only throwing FidoException is because internally the server can catch certain exceptions and take corrective action.
Constructor Summary | |
FidoException()
Constructs an FidoException
without a String detail message. |
|
FidoException(java.lang.String s)
Constructs an FidoException
with a String detail message. |
|
FidoException(java.lang.Throwable e)
Constructs an FidoException
with a nested exception, using that exception's
detail message for getMessage(). |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public FidoException()
FidoException
without a String detail message.
public FidoException(java.lang.String s)
FidoException
with a String detail message.
s
- the detail messagepublic FidoException(java.lang.Throwable e)
FidoException
with a nested exception, using that exception's
detail message for getMessage().
|
Fido Alpha 3.2 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |