public class MissingDataException
extends java.lang.Exception
| Constructor and Description |
|---|
MissingDataException(java.lang.String message)
Constructor which accepts an error message.
|
MissingDataException(java.lang.String message,
java.lang.Throwable rootCause)
Constructor which accepts an error message and a root cause.
|
MissingDataException(java.lang.Throwable rootCause)
Constructor which accepts and wrappers a root cause.
|
public MissingDataException(java.lang.String message)
message - Error message; typically an identifier or key for the missing
data.public MissingDataException(java.lang.String message,
java.lang.Throwable rootCause)
message - Error message; typically an identifier or key for the missing
data.rootCause - Exception which has been caught in the course of trying to
obtain the missing data.public MissingDataException(java.lang.Throwable rootCause)
rootCause - Exception which has been caught in the course of trying to
obtain the missing data.