public class NotFoundException
extends java.lang.Exception
Constructor and Description |
---|
NotFoundException()
Creates the exception without additional info
|
NotFoundException(java.lang.Exception e)
Creates the NotFoundException, setting the underlying cause
|
NotFoundException(java.lang.String msg)
Creates the Exception, setting a message argument.
|
NotFoundException(java.lang.String msg,
java.lang.Exception e)
Creates the NotFoundException
|
public NotFoundException()
public NotFoundException(java.lang.Exception e)
e
- -public NotFoundException(java.lang.String msg)
msg
- Some string that might be interesting to be accessible to the caller. The meaning of this String is defined by the particular method that throws the exception. E.g., it might represent the set of all valid command names, ...public NotFoundException(java.lang.String msg, java.lang.Exception e)
msg
- The exception messagee
- The cause of this exception being raised