|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.richclient.application.ApplicationException
public class ApplicationException
Indicates that an application-level programming error or a runtime configuration error has occurred.
This exception should not be thrown for errors such as invalid user input or data access errors. Basically, this represents a defect in the program or its runtime configuration. This is a very general top-level exception. Before creating and throwing a new instance of this type, consider if a more specific subclass would be more appropriate.
| Constructor Summary | |
|---|---|
ApplicationException()
Creates a new ApplicationException. |
|
ApplicationException(String message)
Creates a new ApplicationException with the specified message. |
|
ApplicationException(String message,
Throwable cause)
Creates a new ApplicationException with the specified message
and nested exception. |
|
ApplicationException(Throwable cause)
Creates a new ApplicationException with the specified nested exception. |
|
| Method Summary |
|---|
| 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 ApplicationException()
ApplicationException.
public ApplicationException(String message)
ApplicationException with the specified message.
message - The detail message.
public ApplicationException(String message,
Throwable cause)
ApplicationException with the specified message
and nested exception.
message - The detail message.cause - The nested exception.public ApplicationException(Throwable cause)
ApplicationException with the specified nested exception.
cause - The nested exception.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||