Searched refs:message (Results 1 - 25 of 143) sorted by relevance

123456

/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodHandleStatics.java128 /*non-public*/ static InternalError newInternalError(String message) { argument
129 return new InternalError(message);
131 /*non-public*/ static InternalError newInternalError(String message, Throwable cause) { argument
132 return new InternalError(message, cause);
137 /*non-public*/ static RuntimeException newIllegalStateException(String message) { argument
138 return new IllegalStateException(message);
140 /*non-public*/ static RuntimeException newIllegalStateException(String message, Object obj) { argument
141 return new IllegalStateException(message(message, obj));
143 /*non-public*/ static RuntimeException newIllegalArgumentException(String message) { argument
146 newIllegalArgumentException(String message, Object obj) argument
149 newIllegalArgumentException(String message, Object obj, Object obj2) argument
161 message(String message, Object obj) argument
165 message(String message, Object obj, Object obj2) argument
[all...]
H A DLambdaConversionException.java41 * Constructs a {@code LambdaConversionException} with a message.
42 * @param message the detail message
44 public LambdaConversionException(String message) { argument
45 super(message);
49 * Constructs a {@code LambdaConversionException} with a message and cause.
50 * @param message the detail message
53 public LambdaConversionException(String message, Throwable cause) { argument
54 super(message, caus
73 LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
/libcore/ojluni/src/main/java/java/time/
H A DDateTimeException.java83 * 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) { argument
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) { argument
98 super(message, caus
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatException.java25 public ExpatException(String message) { argument
26 super(message);
/libcore/luni/src/main/java/org/xml/sax/
H A DSAXNotRecognizedException.java41 * Construct a new exception with the given message.
43 * @param message The text message of the exception.
45 public SAXNotRecognizedException (String message) argument
47 super(message);
H A DSAXNotSupportedException.java33 * Construct a new exception with no message.
41 * Construct a new exception with the given message.
43 * @param message The text message of the exception.
45 public SAXNotSupportedException (String message) argument
47 super(message);
/libcore/luni/src/test/java/libcore/java/nio/file/
H A DFileSystemAlreadyExistsExceptionTest.java26 String message = "message";
27 FileSystemAlreadyExistsException exception = new FileSystemAlreadyExistsException(message);
28 assertEquals(message, exception.getMessage());
30 message = null;
31 exception = new FileSystemAlreadyExistsException(message);
32 assertEquals(message, exception.getMessage());
H A DProviderNotFoundExceptionTest.java26 String message = "message";
27 ProviderNotFoundException exception = new ProviderNotFoundException(message);
28 assertEquals(message, exception.getMessage());
30 message = null;
31 exception = new ProviderNotFoundException(message);
32 assertEquals(message, exception.getMessage());
/libcore/ojluni/src/lambda/java/java/lang/invoke/
H A DLambdaConversionException.java41 * Constructs a {@code LambdaConversionException} with a message.
42 * @param message the detail message
44 public LambdaConversionException(String message) { argument
45 super(message);
49 * Constructs a {@code LambdaConversionException} with a message and cause.
50 * @param message the detail message
53 public LambdaConversionException(String message, Throwable cause) { argument
54 super(message, caus
73 LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DError.java53 * Constructs a new error with {@code null} as its detail message.
62 * Constructs a new error with the specified detail message. The
66 * @param message the detail message. The detail message is saved for
69 public Error(String message) { argument
70 super(message);
74 * Constructs a new error with the specified detail message and
75 * cause. <p>Note that the detail message associated with
77 * this error's detail message
87 Error(String message, Throwable cause) argument
123 Error(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DException.java49 * Constructs a new exception with {@code null} as its detail message.
58 * Constructs a new exception with the specified detail message. The
62 * @param message the detail message. The detail message is saved for
65 public Exception(String message) { argument
66 super(message);
70 * Constructs a new exception with the specified detail message and
71 * cause. <p>Note that the detail message associated with
73 * this exception's detail message
83 Exception(String message, Throwable cause) argument
119 Exception(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DRuntimeException.java47 * detail message. The cause is not initialized, and may subsequently be
54 /** Constructs a new runtime exception with the specified detail message.
58 * @param message the detail message. The detail message is saved for
61 public RuntimeException(String message) { argument
62 super(message);
66 * Constructs a new runtime exception with the specified detail message and
67 * cause. <p>Note that the detail message associated with
69 * this runtime exception's detail message
79 RuntimeException(String message, Throwable cause) argument
114 RuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DInternalError.java39 * Constructs an <code>InternalError</code> with no detail message.
47 * detail message.
49 * @param message the detail message.
51 public InternalError(String message) { argument
52 super(message);
58 * message and cause. <p>Note that the detail message associated
60 * this error's detail message.
62 * @param message th
70 InternalError(String message, Throwable cause) argument
[all...]
H A DReflectiveOperationException.java40 * message. The cause is not initialized, and may subsequently be
48 * Constructs a new exception with the specified detail message.
52 * @param message the detail message. The detail message is saved for
55 public ReflectiveOperationException(String message) { argument
56 super(message);
60 * Constructs a new exception with the specified detail message
63 * <p>Note that the detail message associated with
65 * this exception's detail message
74 ReflectiveOperationException(String message, Throwable cause) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DGenericSignatureFormatError.java49 * specified message.
51 * @param message the detail message, may be {@code null}
53 public GenericSignatureFormatError(String message) { argument
54 super(message);
/libcore/ojluni/src/main/java/java/security/cert/
H A DCertificateExpiredException.java41 * Constructs a CertificateExpiredException with no detail message. A
42 * detail message is a String that describes this particular
51 * message. A detail message is a String that describes this
54 * @param message the detail message.
56 public CertificateExpiredException(String message) { argument
57 super(message);
H A DCertificateNotYetValidException.java41 * Constructs a CertificateNotYetValidException with no detail message. A
42 * detail message is a String that describes this particular
51 * message. A detail message is a String that describes this
54 * @param message the detail message.
56 public CertificateNotYetValidException(String message) { argument
57 super(message);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DBrokenBarrierException.java53 * message.
59 * detail message.
61 * @param message the detail message
63 public BrokenBarrierException(String message) { argument
64 super(message);
H A DCancellationException.java50 * Constructs a {@code CancellationException} with no detail message.
56 * message.
58 * @param message the detail message
60 public CancellationException(String message) { argument
61 super(message);
H A DTimeoutException.java54 * message.
60 * message.
62 * @param message the detail message
64 public TimeoutException(String message) { argument
65 super(message);
/libcore/ojluni/src/main/java/javax/security/cert/
H A DCertificateEncodingException.java46 * Constructs a CertificateEncodingException with no detail message. A
47 * detail message is a String that describes this particular
56 * message. A detail message is a String that describes this
59 * @param message the detail message.
61 public CertificateEncodingException(String message) { argument
62 super(message);
H A DCertificateExpiredException.java48 * Constructs a CertificateExpiredException with no detail message. A
49 * detail message is a String that describes this particular
58 * message. A detail message is a String that describes this
61 * @param message the detail message.
63 public CertificateExpiredException(String message) { argument
64 super(message);
H A DCertificateNotYetValidException.java48 * Constructs a CertificateNotYetValidException with no detail message. A
49 * detail message is a String that describes this particular
58 * message. A detail message is a String that describes this
61 * @param message the detail message.
63 public CertificateNotYetValidException(String message) { argument
64 super(message);
H A DCertificateParsingException.java48 * Constructs a CertificateParsingException with no detail message. A
49 * detail message is a String that describes this particular
58 * message. A detail message is a String that describes this
61 * @param message the detail message.
63 public CertificateParsingException(String message) { argument
64 super(message);
/libcore/ojluni/src/main/java/java/io/
H A DIOException.java44 * as its error detail message.
51 * Constructs an {@code IOException} with the specified detail message.
53 * @param message
54 * The detail message (which is saved for later retrieval
57 public IOException(String message) { argument
58 super(message);
62 * Constructs an {@code IOException} with the specified detail message
65 * <p> Note that the detail message associated with {@code cause} is
67 * message.
69 * @param message
80 IOException(String message, Throwable cause) argument
[all...]

Completed in 3231 milliseconds

123456