|
Version 4.10.0
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
ObjectThrowable
Exception
hirondelle.web4j.model.AppException
public class AppException
Base class for most exceptions defined by WEB4J.
Differs from most exception classes in that multiple error messages may be used, instead of just one. Used in JSPs to inform the user of error conditions, usually related to user input validations.
This class is Serializable, since all Throwables are serializable.
| Constructor Summary | |
|---|---|
AppException()
No-argument constructor. |
|
AppException(String aMessage,
Throwable aThrowable)
Constructor. |
|
| Method Summary | |
|---|---|
void |
add(AppException ex)
Add all AppResponseMessages attached to aAppEx to this list. |
void |
add(String aErrorMessage)
Add a simple AppResponseMessage to this list. |
void |
add(String aErrorMessage,
Object... aParams)
Add a compound AppResponseMessage to this list. |
List<AppResponseMessage> |
getMessages()
Return an unmodifiable List of AppResponseMessages. |
boolean |
isEmpty()
Return true only if there are no messages in this list. |
boolean |
isNotEmpty()
Return the negation of MessageList.isEmpty(). |
String |
toString()
Intended for debugging only. |
| Methods inherited from class Throwable |
|---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace |
| Methods inherited from class Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public AppException()
public AppException(String aMessage,
Throwable aThrowable)
aMessage - text describing the problem. Must have content.aThrowable - root cause underlying the problem.| Method Detail |
|---|
public final void add(String aErrorMessage)
MessageListAppResponseMessage to this list.
The argument satisfies the same conditions as AppResponseMessage.forSimple(java.lang.String).
add in interface MessageList
public final void add(String aErrorMessage,
Object... aParams)
MessageListAppResponseMessage to this list.
The arguments satisfy the same conditions as AppResponseMessage.forCompound(java.lang.String, java.lang.Object...).
add in interface MessageListpublic final void add(AppException ex)
MessageListAppResponseMessages attached to aAppEx to this list.
add in interface MessageListpublic boolean isEmpty()
MessageListNote that this method name conflicts with the empty keyword
of JSTL. Thus, MessageList.isNotEmpty() is supplied as an alternative.
isEmpty in interface MessageListpublic final boolean isNotEmpty()
MessageListMessageList.isEmpty().
isNotEmpty in interface MessageListpublic final List<AppResponseMessage> getMessages()
MessageListAppResponseMessages.
getMessages in interface MessageListpublic String toString()
toString in class Throwable
|
Version 4.10.0
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||