Constructors Summary |
---|
public ResourceNotFoundException()Constructs an empty ResourceNotFoundException
super();
// TODO Auto-generated constructor stub
|
public ResourceNotFoundException(String message)Constructs a new ResourceNotFoundException with an exception message
super(message);
// TODO Auto-generated constructor stub
|
public ResourceNotFoundException(String message, Throwable cause)Constructs a new ResourceNotFoundException with an exception message and a root cause
super(message, cause);
// TODO Auto-generated constructor stub
|
public ResourceNotFoundException(Throwable cause)Constructs a new ResourceNotFoundException with a root cause
super(cause);
// TODO Auto-generated constructor stub
|