Home | History | Annotate | Download | only in time

Lines Matching refs:message

83      * Constructs a new date-time exception with the specified message.
85 * @param message the message to use for this exception, may be null
87 public DateTimeException(String message) {
88 super(message);
92 * Constructs a new date-time exception with the specified message and cause.
94 * @param message the message to use for this exception, may be null
97 public DateTimeException(String message, Throwable cause) {
98 super(message, cause);