HomeSort by relevance Sort by last modified time
    Searched refs:message (Results 51 - 75 of 10204) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/header/
TooManyHopsException.java 8 public TooManyHopsException(String message) {
9 super(message);
12 public TooManyHopsException(String message, Throwable cause) {
13 super(message, cause);
  /external/vulkan-validation-layers/libs/glm/gtx/
constants.hpp 30 # pragma message("GLM: GLM_GTX_constants extension is deprecated, include GLM_GTC_constants (glm/gtc/constants.hpp) instead")
  /frameworks/base/core/java/android/accounts/
AccountsException.java 23 public AccountsException(String message) {
24 super(message);
26 public AccountsException(String message, Throwable cause) {
27 super(message, cause);
AuthenticatorException.java 23 public AuthenticatorException(String message) {
24 super(message);
26 public AuthenticatorException(String message, Throwable cause) {
27 super(message, cause);
NetworkErrorException.java 22 public NetworkErrorException(String message) {
23 super(message);
25 public NetworkErrorException(String message, Throwable cause) {
26 super(message, cause);
OperationCanceledException.java 22 public OperationCanceledException(String message) {
23 super(message);
25 public OperationCanceledException(String message, Throwable cause) {
26 super(message, cause);
  /frameworks/base/core/java/android/nfc/
FormatException.java 24 public FormatException(String message) {
25 super(message);
28 public FormatException(String message, Throwable e) {
29 super(message, e);
  /frameworks/base/keystore/java/android/security/keystore/
KeyExpiredException.java 28 * Constructs a new {@code KeyExpiredException} without detail message and cause.
35 * Constructs a new {@code KeyExpiredException} with the provided detail message and no cause.
37 public KeyExpiredException(String message) {
38 super(message);
42 * Constructs a new {@code KeyExpiredException} with the provided detail message and cause.
44 public KeyExpiredException(String message, Throwable cause) {
45 super(message, cause);
KeyNotYetValidException.java 28 * Constructs a new {@code KeyNotYetValidException} without detail message and cause.
35 * Constructs a new {@code KeyNotYetValidException} with the provided detail message and no
38 public KeyNotYetValidException(String message) {
39 super(message);
43 * Constructs a new {@code KeyNotYetValidException} with the provided detail message and cause.
45 public KeyNotYetValidException(String message, Throwable cause) {
46 super(message, cause);
KeyPermanentlyInvalidatedException.java 35 * Constructs a new {@code KeyPermanentlyInvalidatedException} without detail message and cause.
42 * Constructs a new {@code KeyPermanentlyInvalidatedException} with the provided detail message
45 public KeyPermanentlyInvalidatedException(String message) {
46 super(message);
50 * Constructs a new {@code KeyPermanentlyInvalidatedException} with the provided detail message
53 public KeyPermanentlyInvalidatedException(String message, Throwable cause) {
54 super(message, cause);
UserNotAuthenticatedException.java 28 * Constructs a new {@code UserNotAuthenticatedException} without detail message and cause.
35 * Constructs a new {@code UserNotAuthenticatedException} with the provided detail message and
38 public UserNotAuthenticatedException(String message) {
39 super(message);
43 * Constructs a new {@code UserNotAuthenticatedException} with the provided detail message and
46 public UserNotAuthenticatedException(String message, Throwable cause) {
47 super(message, cause);
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/exceptions/
TimeoutRuntimeException.java 26 public TimeoutRuntimeException(String message) {
27 super(message);
30 public TimeoutRuntimeException(String message, Throwable cause) {
31 super(message, cause);
  /libcore/ojluni/src/main/java/java/time/
DateTimeException.java 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)
    [all...]
  /libcore/tzdata/shared2/src/main/libcore/tzdata/shared2/
DistroException.java 24 public DistroException(String message) {
25 super(message);
28 public DistroException(String message, Throwable cause) {
29 super(message, cause);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
IllegalProvisioningArgumentException.java 26 public IllegalProvisioningArgumentException(String message) {
27 super(message);
30 public IllegalProvisioningArgumentException(String message, Throwable t) {
31 super(message, t);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
warning_tests.py 5 def outer(message, stacklevel=1):
6 inner(message, stacklevel)
8 def inner(message, stacklevel=1):
9 warnings.warn(message, stacklevel=stacklevel)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
warning_tests.py 5 def outer(message, stacklevel=1):
6 inner(message, stacklevel)
8 def inner(message, stacklevel=1):
9 warnings.warn(message, stacklevel=stacklevel)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
warning_tests.py 5 def outer(message, stacklevel=1):
6 inner(message, stacklevel)
8 def inner(message, stacklevel=1):
9 warnings.warn(message, stacklevel=stacklevel)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
warning_tests.py 5 def outer(message, stacklevel=1):
6 inner(message, stacklevel)
8 def inner(message, stacklevel=1):
9 warnings.warn(message, stacklevel=stacklevel)
  /system/chre/platform/linux/
host_link.cc 21 bool HostLink::sendMessage(const MessageToHost *message) {
  /tools/apksig/src/main/java/com/android/apksig/apk/
ApkFormatException.java 28 public ApkFormatException(String message) {
29 super(message);
32 public ApkFormatException(String message, Throwable cause) {
33 super(message, cause);
MinSdkVersionException.java 28 * Constructs a new {@code MinSdkVersionException} with the provided message.
30 public MinSdkVersionException(String message) {
31 super(message);
35 * Constructs a new {@code MinSdkVersionException} with the provided message and cause.
37 public MinSdkVersionException(String message, Throwable cause) {
38 super(message, cause);
  /tools/apksig/src/main/java/com/android/apksig/zip/
ZipFormatException.java 25 public ZipFormatException(String message) {
26 super(message);
29 public ZipFormatException(String message, Throwable cause) {
30 super(message, cause);
  /dalvik/dexgen/src/com/android/dexgen/util/
Warning.java 26 * @param message human-oriented message
28 public Warning(String message) {
29 super(message);
  /dalvik/dx/src/com/android/dx/util/
Warning.java 26 * @param message human-oriented message
28 public Warning(String message) {
29 super(message);

Completed in 1137 milliseconds

1 23 4 5 6 7 8 91011>>