Package helma.framework
Class NotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
helma.framework.NotFoundException
- All Implemented Interfaces:
Serializable
The basic exception class used to tell when certain things go
wrong in evaluation of requests.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNotFoundException
(String message) Creates a new NotFoundException object.NotFoundException
(String message, Throwable cause) Creates a new NotFoundException object with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotFoundException
Creates a new NotFoundException object.- Parameters:
message
- ...
-
NotFoundException
Creates a new NotFoundException object with a cause.- Parameters:
message
- the messagecause
- the cause
-