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

<<11121314151617181920>>

  /external/messageformat/java/com/ibm/icu/util/
ICUException.java 30 * @param message exception message string
34 public ICUException(String message) {
35 super(message);
52 * @param message exception message string
57 public ICUException(String message, Throwable cause) {
58 super(message, cause);
ICUUncheckedIOException.java 36 * @param message exception message string
40 public ICUUncheckedIOException(String message) {
41 super(message);
58 * @param message exception message string
63 public ICUUncheckedIOException(String message, Throwable cause) {
64 super(message, cause);
  /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/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/vulkan-validation-layers/libs/glm/gtx/
inertia.hpp 46 # pragma message("GLM: GLM_GTX_inertia extension included")
scalar_relational.hpp 45 # pragma message("GLM: GLM_GTX_extend extension included")
  /external/vulkan-validation-layers/libs/glm/virtrev/
xstream.hpp 47 # pragma message("GLM: GLM_VIRTREV_xstream extension included")
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPException.java 24 * Constructs an exception with a message and an error code.
25 * @param message the message
28 public XMPException(String message, int errorCode)
30 super(message);
36 * Constructs an exception with a message, an error code and a <code>Throwable</code>
37 * @param message the error message.
41 public XMPException(String message, int errorCode, Throwable t)
43 super(message, t)
    [all...]
  /frameworks/base/core/proto/android/os/
worksource.proto 23 message WorkSourceProto {
24 message WorkSourceContentProto {
  /frameworks/base/location/java/android/location/
OnNmeaMessageListener.java 29 * Called when an NMEA message is received.
30 * @param message NMEA message
33 void onNmeaMessage(String message, long timestamp);
  /frameworks/base/telephony/java/com/android/ims/
ImsException.java 34 public ImsException(String message, int code) {
35 super(message + ", code = " + code);
39 public ImsException(String message, Throwable cause, int code) {
40 super(message, cause);
  /frameworks/opt/net/voip/src/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)
  /frameworks/opt/telephony/src/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...]
  /hardware/interfaces/configstore/utils/
ConfigStoreUtils.cpp 30 void logAlwaysInfo(const std::string& message) {
31 LOG(INFO) << message;
34 void logAlwaysError(const std::string& message) {
35 LOG(ERROR) << message;
  /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/ojluni/src/main/java/java/io/
IOException.java 44 * as its error detail message.
51 * Constructs an {@code IOException} with the specified detail message.
53 * @param message
54 * The detail message (which is saved for later retrieval
57 public IOException(String message) {
58 super(message);
62 * Constructs an {@code IOException} with the specified detail message
65 * <p> Note that the detail message associated with {@code cause} is
67 * message.
69 * @param message
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
InternalError.java 39 * Constructs an <code>InternalError</code> with no detail message.
47 * detail message.
49 * @param message the detail message.
51 public InternalError(String message) {
52 super(message);
58 * message and cause. <p>Note that the detail message associated
60 * this error's detail message.
62 * @param message the detail message (which is saved for later retrieva
    [all...]
ReflectiveOperationException.java 40 * message. The cause is not initialized, and may subsequently be
48 * Constructs a new exception with the specified detail message.
52 * @param message the detail message. The detail message is saved for
55 public ReflectiveOperationException(String message) {
56 super(message);
60 * Constructs a new exception with the specified detail message
63 * <p>Note that the detail message associated with
65 * this exception's detail message
    [all...]

Completed in 1553 milliseconds

<<11121314151617181920>>