public class DataNotFoundException
extends java.lang.Exception
| Constructor and Description |
|---|
DataNotFoundException(java.lang.String message)
Constructor DataNotFoundException creates a new DataNotFoundException instance.
|
DataNotFoundException(java.lang.String message,
java.lang.Throwable cause)
Constructor DataNotFoundException creates a new DataNotFoundException instance.
|
DataNotFoundException(java.lang.Throwable cause)
Constructor DataNotFoundException creates a new DataNotFoundException instance.
|
public DataNotFoundException(java.lang.String message)
message - the detail message (which is saved for later retrieval
by the Throwable.getMessage() method).public DataNotFoundException(java.lang.String message,
java.lang.Throwable cause)
message - the detail message (which is saved for later retrieval
by the Throwable.getMessage() method).cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)public DataNotFoundException(java.lang.Throwable cause)
cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)