HomeSort by relevance Sort by last modified time
    Searched refs:message (Results 151 - 175 of 11882) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/doclava/src/com/google/doclava/apicheck/
ApiParseException.java 26 public ApiParseException(String message) {
27 super(message);
30 public ApiParseException(String message, Exception cause) {
31 super(message, cause);
37 public ApiParseException(String message, int line) {
38 super(message);
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
NumberParseException.java 57 private String message; field in class:NumberParseException
59 public NumberParseException(ErrorType errorType, String message) {
60 super(message);
61 this.message = message;
74 return "Error type: " + errorType + ". " + message;
  /frameworks/base/core/java/android/content/
OperationApplicationException.java 30 public OperationApplicationException(String message) {
31 super(message);
34 public OperationApplicationException(String message, Throwable cause) {
35 super(message, cause);
46 public OperationApplicationException(String message, int numSuccessfulYieldPoints) {
47 super(message);
  /libcore/luni/src/test/java/libcore/java/nio/file/
FileSystemAlreadyExistsExceptionTest.java 26 String message = "message"; local
27 FileSystemAlreadyExistsException exception = new FileSystemAlreadyExistsException(message);
28 assertEquals(message, exception.getMessage());
30 message = null;
31 exception = new FileSystemAlreadyExistsException(message);
32 assertEquals(message, exception.getMessage());
ProviderNotFoundExceptionTest.java 26 String message = "message"; local
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/
LambdaConversionException.java 41 * Constructs a {@code LambdaConversionException} with a message.
42 * @param message the detail message
44 public LambdaConversionException(String message) {
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) {
54 super(message, cause)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Error.java 53 * 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) {
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
    [all...]
Exception.java 49 * 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) {
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
    [all...]
RuntimeException.java 47 * 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) {
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
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
LambdaConversionException.java 41 * Constructs a {@code LambdaConversionException} with a message.
42 * @param message the detail message
44 public LambdaConversionException(String message) {
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) {
54 super(message, cause)
    [all...]
  /tools/metalava/src/main/java/com/android/tools/metalava/doclava1/
ApiParseException.java 26 public ApiParseException(String message) {
27 super(message);
30 public ApiParseException(String message, Exception cause) {
31 super(message, cause);
37 public ApiParseException(String message, int line) {
38 super(message);
  /external/protobuf/python/google/protobuf/internal/
well_known_types_test.py 59 def CheckTimestampConversion(self, message, text):
60 self.assertEqual(text, message.ToJsonString())
63 self.assertEqual(message, parsed_message)
65 def CheckDurationConversion(self, message, text):
66 self.assertEqual(text, message.ToJsonString())
69 self.assertEqual(message, parsed_message)
75 message = timestamp_pb2.Timestamp()
77 message.seconds = 0
78 message.nanos = 0
79 self.CheckTimestampConversion(message, '1970-01-01T00:00:00Z'
    [all...]
  /dalvik/dx/src/com/android/dex/
DexIndexOverflowException.java 23 public DexIndexOverflowException(String message) {
24 super(message);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyViewException.java 29 * @param message the error message
31 public MonkeyViewException(String message) {
32 super(message);
  /development/samples/ApiDemos/src/com/example/android/mmslib/
InvalidHeaderValueException.java 27 * Constructs an InvalidHeaderValueException with no detailed message.
34 * Constructs an InvalidHeaderValueException with the specified detailed message.
36 * @param message the detailed message.
38 public InvalidHeaderValueException(String message) {
39 super(message);
  /external/apache-http/src/org/apache/http/
ParseException.java 36 * Parse errors when receiving a message will typically trigger
62 * Creates a {@link ParseException} with a detail message.
64 * @param message the exception detail message, or <code>null</code>
66 public ParseException(String message) {
67 super(message);
  /external/apache-http/src/org/apache/http/conn/
ConnectionPoolTimeoutException.java 52 * Creates a ConnectTimeoutException with a <tt>null</tt> detail message.
59 * Creates a ConnectTimeoutException with the specified detail message.
61 * @param message The exception detail message
63 public ConnectionPoolTimeoutException(String message) {
64 super(message);
  /external/deqp/framework/randomshaders/
rsgDefs.hpp 39 Exception (const std::string& message) : std::runtime_error(message) {}
  /external/deqp/scripts/verify/
message.py 29 def __init__ (self, type, filename, message):
32 self.message = message
36 return prefix[self.type] + os.path.basename(self.filename) + ": " + self.message
38 def error (filename, message):
39 return ValidationMessage(ValidationMessage.TYPE_ERROR, filename, message)
41 def warning (filename, message):
42 return ValidationMessage(ValidationMessage.TYPE_WARNING, filename, message)
  /external/desugar/java/com/google/devtools/common/options/
DuplicateOptionDeclarationException.java 20 DuplicateOptionDeclarationException(String message) {
21 super(message);
OptionsParsingException.java 25 public OptionsParsingException(String message) {
26 this(message, (String) null);
29 public OptionsParsingException(String message, String argument) {
30 super(message);
34 public OptionsParsingException(String message, Throwable throwable) {
35 this(message, null, throwable);
38 public OptionsParsingException(String message, String argument, Throwable throwable) {
39 super(message, throwable);
  /external/emma/core/java12/com/vladium/emma/
EMMAException.java 23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
32 * @param message the detail message [can be null]
34 public EMMAException (final String message)
36 super (message);
40 * Constructs an exception with given error message/code and null cause.
42 * @param message the detail message [can be null]
43 * @param arguments message format parameters [can be null or empty
    [all...]
EMMARuntimeException.java 23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
32 * @param message the detail message [can be null]
34 public EMMARuntimeException (final String message)
36 super (message);
40 * Constructs an exception with given error message/code and null cause.
42 * @param message the detail message [can be null]
43 * @param arguments message format parameters [can be null or empty
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ArabicShapingException.java 22 * Construct the exception with the given message
23 * @param message the error message for this exception
25 public ArabicShapingException(String message) {
26 super(message);
  /external/icu/icu4c/source/samples/layout/
GDIGUISupport.cpp 24 void GDIGUISupport::postErrorMessage(const char *message, const char *title)
26 MessageBoxA(NULL, message, title, MB_ICONERROR);

Completed in 465 milliseconds

1 2 3 4 5 67 8 91011>>