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

<<11121314151617181920>>

  /external/apache-http/src/org/apache/http/auth/
AuthenticationException.java 52 * Creates a new AuthenticationException with a <tt>null</tt> detail message.
59 * Creates a new AuthenticationException with the specified message.
61 * @param message the exception detail message
63 public AuthenticationException(String message) {
64 super(message);
68 * Creates a new AuthenticationException with the specified detail message and cause.
70 * @param message the exception detail message
74 public AuthenticationException(String message, Throwable cause)
    [all...]
InvalidCredentialsException.java 51 * Creates a new InvalidCredentialsException with a <tt>null</tt> detail message.
58 * Creates a new InvalidCredentialsException with the specified message.
60 * @param message the exception detail message
62 public InvalidCredentialsException(String message) {
63 super(message);
67 * Creates a new InvalidCredentialsException with the specified detail message and cause.
69 * @param message the exception detail message
73 public InvalidCredentialsException(String message, Throwable cause)
    [all...]
MalformedChallengeException.java 53 * Creates a new MalformedChallengeException with a <tt>null</tt> detail message.
60 * Creates a new MalformedChallengeException with the specified message.
62 * @param message the exception detail message
64 public MalformedChallengeException(String message) {
65 super(message);
69 * Creates a new MalformedChallengeException with the specified detail message and cause.
71 * @param message the exception detail message
75 public MalformedChallengeException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/client/
CircularRedirectException.java 50 * Creates a new CircularRedirectException with a <tt>null</tt> detail message.
57 * Creates a new CircularRedirectException with the specified detail message.
59 * @param message The exception detail message
61 public CircularRedirectException(String message) {
62 super(message);
66 * Creates a new CircularRedirectException with the specified detail message and cause.
68 * @param message the exception detail message
72 public CircularRedirectException(String message, Throwable cause)
    [all...]
RedirectException.java 52 * Creates a new RedirectException with a <tt>null</tt> detail message.
59 * Creates a new RedirectException with the specified detail message.
61 * @param message The exception detail message
63 public RedirectException(String message) {
64 super(message);
68 * Creates a new RedirectException with the specified detail message and cause.
70 * @param message the exception detail message
74 public RedirectException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
MalformedCookieException.java 54 * Creates a new MalformedCookieException with a <tt>null</tt> detail message.
61 * Creates a new MalformedCookieException with a specified message string.
63 * @param message The exception detail message
65 public MalformedCookieException(String message) {
66 super(message);
70 * Creates a new MalformedCookieException with the specified detail message and cause.
72 * @param message the exception detail message
76 public MalformedCookieException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngineException.java 56 * Creates a new NTLMEngineException with the specified message.
58 * @param message the exception detail message
60 public NTLMEngineException(String message) {
61 super(message);
65 * Creates a new NTLMEngineException with the specified detail message and cause.
67 * @param message the exception detail message
71 public NTLMEngineException(String message, Throwable cause) {
72 super(message, cause)
    [all...]
UnsupportedDigestAlgorithmException.java 51 * Creates a new UnsupportedAuthAlgoritmException with a <tt>null</tt> detail message.
58 * Creates a new UnsupportedAuthAlgoritmException with the specified message.
60 * @param message the exception detail message
62 public UnsupportedDigestAlgorithmException(String message) {
63 super(message);
67 * Creates a new UnsupportedAuthAlgoritmException with the specified detail message and cause.
69 * @param message the exception detail message
73 public UnsupportedDigestAlgorithmException(String message, Throwable cause)
    [all...]
  /external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
PatchFormatException.java 26 * Constructs a new exception with the specified message.
27 * @param message the message
29 public PatchFormatException(String message) {
30 super(message);
34 * Constructs a new exception with the specified message and cause.
35 * @param message the message
38 public PatchFormatException(String message, Throwable cause) {
39 super(message);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Exception.java 16 * @param message a message concerning the exception.
18 ASN1Exception(String message)
20 super(message);
26 * @param message a message concerning the exception.
29 ASN1Exception(String message, Throwable cause)
31 super(message);
ASN1ParsingException.java 14 * @param message a message concerning the exception.
16 public ASN1ParsingException(String message)
18 super(message);
24 * @param message a message concerning the exception.
27 public ASN1ParsingException(String message, Throwable cause)
29 super(message);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
CryptoException.java 19 * create a CryptoException with the given message.
21 * @param message the message to be carried with the exception.
24 String message)
26 super(message);
30 * Create a CryptoException with the given message and underlying cause.
32 * @param message message describing exception.
36 String message,
39 super(message);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemGenerationException.java 13 public PemGenerationException(String message, Throwable cause)
15 super(message);
19 public PemGenerationException(String message)
21 super(message);
  /external/brotli/csharp/org/brotli/dec/
BrotliRuntimeException.cs 12 internal BrotliRuntimeException(string message)
13 : base(message)
17 internal BrotliRuntimeException(string message, System.Exception cause)
18 : base(message, cause)
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
InvalidConfigurationException.java 31 public InvalidConfigurationException(String message, Throwable cause) {
32 super(message, cause);
35 public InvalidConfigurationException(String message) {
36 super(message);
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
SerializationException.java 29 public SerializationException(String message) {
30 super(message);
33 public SerializationException(String message, Throwable cause) {
34 super(message, cause);
  /external/droiddriver/src/io/appium/droiddriver/exceptions/
NoRunningActivityException.java 26 public NoRunningActivityException(String message) {
27 super(message);
34 public NoRunningActivityException(String message, Throwable cause) {
35 super(message, cause);
TimeoutException.java 25 public TimeoutException(String message) {
26 super(message);
33 public TimeoutException(String message, Throwable cause) {
34 super(message, cause);
  /external/eigen/cmake/
EigenUninstall.cmake 11 message(STATUS "============== Uninstalling Eigen ===================")
16 message(STATUS "Removing file: '${file}'")
25 message(FATAL_ERROR "Failed to remove file: '${file}'.")
28 message(STATUS "File '${file}' does not exist.")
32 message(STATUS "========== Finished Uninstalling Eigen ==============")
34 message(STATUS "Cannot find install manifest: '${MANIFEST}'")
35 message(STATUS "Probably make install has not been performed")
36 message(STATUS " or install_manifest.txt has been deleted.")
  /external/fio/compiler/
compiler-gcc4.h 13 #define __compiletime_warning(message) __attribute__((warning(message)))
14 #define __compiletime_error(message) __attribute__((error(message)))
  /external/google-tv-pairing-protocol/java/src/com/google/polo/exception/
BadSecretException.java 28 public BadSecretException(String message, Throwable cause) {
29 super(message, cause);
32 public BadSecretException(String message) {
33 super(message);
NoConfigurationException.java 28 public NoConfigurationException(String message, Throwable cause) {
29 super(message, cause);
32 public NoConfigurationException(String message) {
33 super(message);
PoloException.java 28 public PoloException(String message, Throwable cause) {
29 super(message, cause);
32 public PoloException(String message) {
33 super(message);
ProtocolErrorException.java 28 public ProtocolErrorException(String message, Throwable cause) {
29 super(message, cause);
32 public ProtocolErrorException(String message) {
33 super(message);
  /external/guava/guava/src/com/google/common/util/concurrent/
UncheckedTimeoutException.java 30 public UncheckedTimeoutException(@Nullable String message) {
31 super(message);
38 public UncheckedTimeoutException(@Nullable String message, @Nullable Throwable cause) {
39 super(message, cause);

Completed in 368 milliseconds

<<11121314151617181920>>