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

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/
DialogDoesNotExistException.java 7 public DialogDoesNotExistException(String message) {
8 super(message);
11 public DialogDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
InvalidArgumentException.java 7 public InvalidArgumentException(String message) {
8 super(message);
11 public InvalidArgumentException(String message, Throwable cause) {
12 super(message, cause);
ObjectInUseException.java 7 public ObjectInUseException(String message) {
8 super(message);
11 public ObjectInUseException(String message, Throwable cause) {
12 super(message, cause);
PeerUnavailableException.java 7 public PeerUnavailableException(String message) {
8 super(message);
11 public PeerUnavailableException(String message, Throwable cause) {
12 super(message, cause);
ProviderDoesNotExistException.java 7 public ProviderDoesNotExistException(String message) {
8 super(message);
11 public ProviderDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
SipException.java 7 public SipException(String message) {
8 super(message);
11 public SipException(String message, Throwable cause) {
12 super(message, cause);
TransactionAlreadyExistsException.java 7 public TransactionAlreadyExistsException(String message) {
8 super(message);
11 public TransactionAlreadyExistsException(String message, Throwable cause) {
12 super(message, cause);
TransactionDoesNotExistException.java 7 public TransactionDoesNotExistException(String message) {
8 super(message);
11 public TransactionDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
TransactionUnavailableException.java 7 public TransactionUnavailableException(String message) {
8 super(message);
11 public TransactionUnavailableException(String message, Throwable cause) {
12 super(message, cause);
TransportNotSupportedException.java 7 public TransportNotSupportedException(String message) {
8 super(message);
11 public TransportNotSupportedException(String message, Throwable cause) {
12 super(message, cause);
  /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/perfetto/src/protozero/
message_handle_unittest.cc 20 #include "perfetto/protozero/message.h"
27 Message message; local
28 message.Reset(nullptr);
30 MessageHandle<Message> handle_1(&message);
31 handle_1 = MessageHandle<Message>(&message);
  /external/python/cpython2/Lib/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)
  /external/python/cpython3/Lib/test/test_warnings/data/
stacklevel.py 5 def outer(message, stacklevel=1):
6 inner(message, stacklevel)
8 def inner(message, stacklevel=1):
9 warnings.warn(message, stacklevel=stacklevel)
  /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/core/java/android/util/apk/
SignatureNotFoundException.java 27 public SignatureNotFoundException(String message) {
28 super(message);
31 public SignatureNotFoundException(String message, Throwable cause) {
32 super(message, cause);
  /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);

Completed in 282 milliseconds

1 23 4 5 6 7 8 91011>>