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

1 2 3 4 5 6 7 891011>>

  /dalvik/dexgen/src/com/android/dexgen/util/
MutabilityException.java 24 public MutabilityException(String message) {
25 super(message);
32 public MutabilityException(String message, Throwable cause) {
33 super(message, cause);
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 26 public SimException(String message) {
27 super(message);
34 public SimException(String message, Throwable cause) {
35 super(message, cause);
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseException.java 26 public ParseException(String message) {
27 super(message);
34 public ParseException(String message, Throwable cause) {
35 super(message, cause);
  /dalvik/dx/src/com/android/dx/util/
MutabilityException.java 26 public MutabilityException(String message) {
27 super(message);
34 public MutabilityException(String message, Throwable cause) {
35 super(message, cause);
  /external/ant-glob/src/org/apache/tools/ant/
BuildException.java 35 * Constructs an exception with the given descriptive message.
37 * @param message A description of or information about the exception.
40 public BuildException(String message) {
41 super(message);
45 * Constructs an exception with the given message and exception as
48 * @param message A description of or information about the exception.
53 public BuildException(String message, Throwable cause) {
54 super(message);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
antlr.stg 38 message(id, text) ::= "(<id>) <text>"
40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
gnu.stg 38 message(id, text) ::= "<text> (<id>)"
40 report(location, message, type) ::= "<location> <type>: <message>"
vs2005.stg 38 message(id, text) ::= "error <id> : <text>"
40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
TestErrorException.java 46 * Creates new exception instance with explaining message.
48 * @param message cause explaining message
50 public TestErrorException(String message) {
51 super(message);
55 * Creates new exception instance to enwrap other exception with explaining message.
57 * @param message explaining message
60 public TestErrorException(String message, Throwable throwable) {
61 super(message, throwable)
    [all...]
  /external/apache-http/src/org/apache/http/
HttpException.java 53 * Creates a new HttpException with a <tt>null</tt> detail message.
60 * Creates a new HttpException with the specified detail message.
62 * @param message the exception detail message
64 public HttpException(final String message) {
65 super(message);
69 * Creates a new HttpException with the specified detail message and cause.
71 * @param message the exception detail message
75 public HttpException(final String message, final Throwable cause)
    [all...]
  /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/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 23 public SerializationException(String message) {
24 super(message);
27 public SerializationException(String message, Throwable cause) {
28 super(message, cause);

Completed in 848 milliseconds

1 2 3 4 5 6 7 891011>>