HomeSort by relevance Sort by last modified time
    Searched refs:message (Results 176 - 200 of 6277) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/util/
ICUCloneNotSupportedException.java 31 * @param message exception message string
33 public ICUCloneNotSupportedException(String message) {
34 super(message);
49 * @param message exception message string
52 public ICUCloneNotSupportedException(String message, Throwable cause) {
53 super(message, cause);
ICUException.java 29 * @param message exception message string
31 public ICUException(String message) {
32 super(message);
47 * @param message exception message string
50 public ICUException(String message, Throwable cause) {
51 super(message, cause);
ICUUncheckedIOException.java 33 * @param message exception message string
35 public ICUUncheckedIOException(String message) {
36 super(message);
51 * @param message exception message string
54 public ICUUncheckedIOException(String message, Throwable cause) {
55 super(message, cause);
IllformedLocaleException.java 26 * detail message and -1 as the error index.
34 * given message and -1 as the error index.
36 * @param message the message
38 public IllformedLocaleException(String message) {
39 super(message);
44 * given message and the error index. The error index is the approximate
49 * @param message the message
52 public IllformedLocaleException(String message, int errorIndex)
    [all...]
  /external/icu/icu4c/source/samples/layout/
GUISupport.h 29 virtual void postErrorMessage(const char *message, const char *title) = 0;
gsupport.h 15 void gs_postErrorMessage(gs_guiSupport *guiSupport, const char *message, const char *title);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
IllformedLocaleException.java 27 * detail message and -1 as the error index.
37 * given message and -1 as the error index.
39 * @param message the message
43 public IllformedLocaleException(String message) {
44 super(message);
49 * given message and the error index. The error index is the approximate
54 * @param message the message
59 public IllformedLocaleException(String message, int errorIndex)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
SkeletonSyntaxException.java 22 public SkeletonSyntaxException(String message, CharSequence token) {
23 super("Syntax error in skeleton string: " + message + ": " + token);
33 public SkeletonSyntaxException(String message, CharSequence token, Throwable cause) {
34 super("Syntax error in skeleton string: " + message + ": " + token, cause);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ICUCloneNotSupportedException.java 32 * @param message exception message string
35 public ICUCloneNotSupportedException(String message) {
36 super(message);
52 * @param message exception message string
56 public ICUCloneNotSupportedException(String message, Throwable cause) {
57 super(message, cause);
ICUException.java 30 * @param message exception message string
33 public ICUException(String message) {
34 super(message);
50 * @param message exception message string
54 public ICUException(String message, Throwable cause) {
55 super(message, cause);
ICUUncheckedIOException.java 36 * @param message exception message string
39 public ICUUncheckedIOException(String message) {
40 super(message);
56 * @param message exception message string
60 public ICUUncheckedIOException(String message, Throwable cause) {
61 super(message, cause);
IllformedLocaleException.java 26 * detail message and -1 as the error index.
35 * given message and -1 as the error index.
37 * @param message the message
40 public IllformedLocaleException(String message) {
41 super(message);
46 * given message and the error index. The error index is the approximate
51 * @param message the message
55 public IllformedLocaleException(String message, int errorIndex)
    [all...]
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/
RcsException.java 46 public RcsException(String message, int code) {
47 super(message);
51 public RcsException(String message, Throwable cause, int code) {
52 super(message, cause);
  /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/mockito/src/main/java/org/mockito/exceptions/misusing/
MockitoConfigurationException.java 13 public MockitoConfigurationException(String message) {
14 super(message);
17 public MockitoConfigurationException(String message, Exception cause) {
18 super(message, cause);
  /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/perfetto/src/ipc/test/
client_unittest_messages.proto 22 message RequestProto {
26 message ReplyProto {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ServiceException.java 41 public ServiceException(final String message) {
42 super(message);
49 public ServiceException(final String message, final Throwable cause) {
50 super(message, cause);
  /external/sl4a/Common/src/org/apache/commons/codec/
DecoderException.java 35 * Constructs a new exception with <code>null</code> as its detail message. The cause is not initialized, and may
45 * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
48 * @param message
49 * The detail message which is saved for later retrieval by the {@link #getMessage()} method.
51 public DecoderException(String message) {
52 super(message);
56 * Constructsa new exception with the specified detail message and cause.
59 * Note that the detail message associated with <code>cause</code> is not automatically incorporated into this
60 * exception's detail message.
63 * @param message
    [all...]
EncoderException.java 37 * Constructs a new exception with <code>null</code> as its detail message. The cause is not initialized, and may
47 * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
50 * @param message
51 * a useful message relating to the encoder specific error.
53 public EncoderException(String message) {
54 super(message);
58 * Constructs a new exception with the specified detail message and cause.
61 * Note that the detail message associated with <code>cause</code> is not automatically incorporated into this
62 * exception's detail message.
65 * @param message
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/exception/
Sl4aException.java 26 public Sl4aException(String message) {
27 super(message);
30 public Sl4aException(String message, Exception e) {
31 super(message, e);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalysisException.java 43 public AnalysisException(Throwable cause, String message, Object... formatArgs) {
44 super(cause, message, formatArgs);
47 public AnalysisException(String message, Object... formatArgs) {
48 super(message, formatArgs);
UnresolvedClassException.java 41 public UnresolvedClassException(Throwable cause, String message, Object... formatArgs) {
42 super(cause, message, formatArgs);
45 public UnresolvedClassException(String message, Object... formatArgs) {
46 super(message, formatArgs);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
YAMLException.java 21 public YAMLException(String message) {
22 super(message);
29 public YAMLException(String message, Throwable cause) {
30 super(message, cause);
  /external/tensorflow/tensorflow/core/util/
memmapped_file_system.proto 20 // A message that describes one region of memmapped file.
21 message MemmappedFileSystemDirectoryElement {
27 message MemmappedFileSystemDirectory {

Completed in 1217 milliseconds

1 2 3 4 5 6 78 91011>>