Package helma.framework
Class NotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- helma.framework.NotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class NotFoundException extends java.lang.RuntimeException
The basic exception class used to tell when certain things go wrong in evaluation of requests.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotFoundException(java.lang.String message)
Creates a new NotFoundException object.NotFoundException(java.lang.String message, java.lang.Throwable cause)
Creates a new NotFoundException object with a cause.
-
-
-
Constructor Detail
-
NotFoundException
public NotFoundException(java.lang.String message)
Creates a new NotFoundException object.- Parameters:
message
- ...
-
NotFoundException
public NotFoundException(java.lang.String message, java.lang.Throwable cause)
Creates a new NotFoundException object with a cause.- Parameters:
message
- the messagecause
- the cause
-
-