Searched defs:message (Results 1 - 25 of 99) sorted by relevance

1234

/frameworks/base/awt/java/beans/
H A DIntrospectionException.java24 public IntrospectionException(String message) { argument
25 super(message);
H A DPropertyVetoException.java31 * Constructs an instance with a message and the change event.
34 * @param message
39 public PropertyVetoException(String message, PropertyChangeEvent event) { argument
40 super(message);
/frameworks/base/core/java/android/accounts/
H A DAccountsException.java23 public AccountsException(String message) { argument
24 super(message);
26 public AccountsException(String message, Throwable cause) { argument
27 super(message, cause);
H A DAuthenticatorException.java23 public AuthenticatorException(String message) { argument
24 super(message);
26 public AuthenticatorException(String message, Throwable cause) { argument
27 super(message, cause);
H A DNetworkErrorException.java22 public NetworkErrorException(String message) { argument
23 super(message);
25 public NetworkErrorException(String message, Throwable cause) { argument
26 super(message, cause);
H A DOperationCanceledException.java22 public OperationCanceledException(String message) { argument
23 super(message);
25 public OperationCanceledException(String message, Throwable cause) { argument
26 super(message, cause);
/frameworks/base/media/java/android/drm/mobile1/
H A DDrmException.java31 public DrmException(String message) { argument
32 super(message);
/frameworks/base/awt/javax/imageio/
H A DIIOException.java41 * @param message
42 * the detailed message.
44 public IIOException(String message) { argument
45 super(message);
51 * @param message
52 * the detailed message.
56 public IIOException(String message, Throwable cause) { argument
57 super(message);
/frameworks/base/core/java/android/database/
H A DCursorIndexOutOfBoundsException.java28 public CursorIndexOutOfBoundsException(String message) { argument
29 super(message);
/frameworks/base/core/java/android/pim/vcard/exception/
H A DVCardAgentNotSupportedException.java23 public VCardAgentNotSupportedException(String message) { argument
24 super(message);
H A DVCardException.java29 * @param message the error message
31 public VCardException(String message) { argument
32 super(message);
H A DVCardInvalidCommentLineException.java29 public VCardInvalidCommentLineException(final String message) { argument
30 super(message);
H A DVCardInvalidLineException.java29 public VCardInvalidLineException(final String message) { argument
30 super(message);
H A DVCardNestedException.java26 public VCardNestedException(String message) { argument
27 super(message);
H A DVCardNotSupportedException.java30 public VCardNotSupportedException(String message) { argument
31 super(message);
H A DVCardVersionException.java26 public VCardVersionException(String message) { argument
27 super(message);
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteSecurityException.java23 ZygoteSecurityException(String message) { argument
24 super(message);
/frameworks/base/core/java/com/google/android/mms/
H A DInvalidHeaderValueException.java27 * 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) { argument
39 super(message);
H A DMmsException.java34 * Creates a new MmsException with the specified detail message.
36 * @param message the detail message.
38 public MmsException(String message) { argument
39 super(message);
52 * Creates a new MmsException with the specified detail message and cause.
54 * @param message the detail message.
57 public MmsException(String message, Throwable cause) { argument
58 super(message, caus
[all...]
/frameworks/base/sax/java/android/sax/
H A DBadXmlException.java23 * An XML parse exception which includes the line number in the message.
27 public BadXmlException(String message, Locator locator) { argument
28 super(message, locator);
/frameworks/base/awt/javax/imageio/metadata/
H A DIIOInvalidTreeException.java38 * message and specified offending Node.
40 * @param message
41 * the detailed message.
45 public IIOInvalidTreeException(String message, Node offendingNode) { argument
46 super(message);
52 * message and specified offending Node.
54 * @param message
55 * the detailed message.
61 public IIOInvalidTreeException(String message, Throwable cause, Node offendingNode) { argument
62 super(message, caus
[all...]
/frameworks/base/core/java/android/content/
H A DOperationApplicationException.java30 public OperationApplicationException(String message) { argument
31 super(message);
34 public OperationApplicationException(String message, Throwable cause) { argument
35 super(message, cause);
46 public OperationApplicationException(String message, int numSuccessfulYieldPoints) { argument
47 super(message);
/frameworks/base/core/java/android/net/http/
H A DTimer.java34 public void mark(String message) { argument
37 HttpLog.v(message + " " + (now - mLast) + " total " + (now - mStart));
/frameworks/base/core/java/com/android/internal/util/
H A DObjects.java43 public static <T> T nonNull(T t, String message) { argument
45 throw new NullPointerException(message);
/frameworks/base/core/tests/coretests/src/android/os/
H A DBuildTest.java35 * an AssertionFailedError is thrown with the given message.
37 private static void assertNotEmpty(String message, String string) { argument
38 //Log.i(TAG, "" + message + ": " + string);
39 assertNotNull(message, string);
40 assertFalse(message, string.equals(""));

Completed in 462 milliseconds

1234