HomeSort by relevance Sort by last modified time
    Searched refs:message (Results 126 - 150 of 3014) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-http/src/org/apache/http/auth/
AuthenticationException.java 47 * Creates a new AuthenticationException with a <tt>null</tt> detail message.
54 * Creates a new AuthenticationException with the specified message.
56 * @param message the exception detail message
58 public AuthenticationException(String message) {
59 super(message);
63 * Creates a new AuthenticationException with the specified detail message and cause.
65 * @param message the exception detail message
69 public AuthenticationException(String message, Throwable cause)
    [all...]
MalformedChallengeException.java 48 * Creates a new MalformedChallengeException with a <tt>null</tt> detail message.
55 * Creates a new MalformedChallengeException with the specified message.
57 * @param message the exception detail message
59 public MalformedChallengeException(String message) {
60 super(message);
64 * Creates a new MalformedChallengeException with the specified detail message and cause.
66 * @param message the exception detail message
70 public MalformedChallengeException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/client/
RedirectException.java 47 * Creates a new RedirectException with a <tt>null</tt> detail message.
54 * Creates a new RedirectException with the specified detail message.
56 * @param message The exception detail message
58 public RedirectException(String message) {
59 super(message);
63 * Creates a new RedirectException with the specified detail message and cause.
65 * @param message the exception detail message
69 public RedirectException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
MalformedCookieException.java 49 * Creates a new MalformedCookieException with a <tt>null</tt> detail message.
56 * Creates a new MalformedCookieException with a specified message string.
58 * @param message The exception detail message
60 public MalformedCookieException(String message) {
61 super(message);
65 * Creates a new MalformedCookieException with the specified detail message and cause.
67 * @param message the exception detail message
71 public MalformedCookieException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngineException.java 51 * Creates a new NTLMEngineException with the specified message.
53 * @param message the exception detail message
55 public NTLMEngineException(String message) {
56 super(message);
60 * Creates a new NTLMEngineException with the specified detail message and cause.
62 * @param message the exception detail message
66 public NTLMEngineException(String message, Throwable cause) {
67 super(message, cause)
    [all...]
UnsupportedDigestAlgorithmException.java 46 * Creates a new UnsupportedAuthAlgoritmException with a <tt>null</tt> detail message.
53 * Creates a new UnsupportedAuthAlgoritmException with the specified message.
55 * @param message the exception detail message
57 public UnsupportedDigestAlgorithmException(String message) {
58 super(message);
62 * Creates a new UnsupportedAuthAlgoritmException with the specified detail message and cause.
64 * @param message the exception detail message
68 public UnsupportedDigestAlgorithmException(String message, Throwable cause)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Exception.java 10 ASN1Exception(String message)
12 super(message);
15 ASN1Exception(String message, Throwable cause)
17 super(message);
ASN1ParsingException.java 8 ASN1ParsingException(String message)
10 super(message);
13 ASN1ParsingException(String message, Throwable cause)
15 super(message);
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMException.java 11 String message)
13 super(message);
17 String message,
20 super(message);
  /external/bouncycastle/src/main/java/org/bouncycastle/util/io/pem/
PemGenerationException.java 10 public PemGenerationException(String message, Throwable cause)
12 super(message);
16 public PemGenerationException(String message)
18 super(message);
  /external/guava/src/com/google/common/util/concurrent/
UncheckedTimeoutException.java 28 public UncheckedTimeoutException(String message) {
29 super(message);
36 public UncheckedTimeoutException(String message, Throwable cause) {
37 super(message, cause);
  /external/icu4c/samples/layout/
GUISupport.h 23 virtual void postErrorMessage(const char *message, const char *title) = 0;
gsupport.h 12 void gs_postErrorMessage(gs_guiSupport *guiSupport, const char *message, const char *title);
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JSilverCompilationException.java 25 public JSilverCompilationException(String message, Throwable cause) {
26 super(message, cause);
29 public JSilverCompilationException(String message) {
30 super(message);
  /external/oauth/core/src/main/java/net/oauth/
OAuthException.java 31 * @param message
33 public OAuthException(String message) {
34 super(message);
45 * @param message
48 public OAuthException(String message, Throwable cause) {
49 super(message, cause);
  /external/webkit/Source/WebCore/dom/
MessagePortChannel.cpp 36 PassOwnPtr<MessagePortChannel::EventData> MessagePortChannel::EventData::create(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels)
38 return new EventData(message, channels);
41 MessagePortChannel::EventData::EventData(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels)
42 : m_message(message)
  /external/webkit/Source/WebKit2/Shared/win/
NativeWebKeyboardEventWin.cpp 33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(hwnd, message, wParam, lParam))
38 m_nativeEvent.message = message;
  /frameworks/base/core/java/com/google/android/mms/
MmsException.java 34 * Creates a new MmsException with the specified detail message.
36 * @param message the detail message.
38 public MmsException(String message) {
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) {
58 super(message, cause)
    [all...]
  /frameworks/base/voip/java/android/net/sip/
SipException.java 26 public SipException(String message) {
27 super(message);
30 public SipException(String message, Throwable cause) {
32 super(message, ((cause instanceof javax.sip.SipException)
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
MalformedHprofException.java 25 MalformedHprofException(String message) {
26 super(message);
28 MalformedHprofException(String message, Throwable cause) {
29 super(message, cause);
  /libcore/luni/src/main/java/java/lang/annotation/
AnnotationFormatError.java 33 * Constructs an instance with the message provided.
35 * @param message
38 public AnnotationFormatError(String message) {
39 super(message);
43 * Constructs an instance with a message and a cause.
45 * @param message
50 public AnnotationFormatError(String message, Throwable cause) {
51 super(message, cause);
57 * error's message.
  /libcore/luni/src/main/java/java/security/
AccessControlException.java 32 * given message.
34 * @param message
35 * the detail message for this exception.
37 public AccessControlException(String message) {
38 super(message);
43 * given message and the requested {@code Permission} which was not granted.
45 * @param message
46 * the detail message for the exception.
50 public AccessControlException(String message, Permission perm) {
51 super(message);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutionException.java 22 * Constructs an <tt>ExecutionException</tt> with no detail message.
30 * message. The cause is not initialized, and may subsequently be
33 * @param message the detail message
35 protected ExecutionException(String message) {
36 super(message);
41 * message and cause.
43 * @param message the detail message
47 public ExecutionException(String message, Throwable cause)
    [all...]
RejectedExecutionException.java 20 * Constructs a <tt>RejectedExecutionException</tt> with no detail message.
28 * specified detail message. The cause is not initialized, and may
32 * @param message the detail message
34 public RejectedExecutionException(String message) {
35 super(message);
40 * specified detail message and cause.
42 * @param message the detail message
46 public RejectedExecutionException(String message, Throwable cause)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
CertificateValidationException.java 23 public CertificateValidationException(String message) {
24 super(MessagingException.CERTIFICATE_VALIDATION_ERROR, message);
27 public CertificateValidationException(String message, Throwable throwable) {
28 super(MessagingException.CERTIFICATE_VALIDATION_ERROR, message, throwable);

Completed in 770 milliseconds

1 2 3 4 56 7 8 91011>>