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

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
warning_tests.py 5 def outer(message, stacklevel=1):
6 inner(message, stacklevel)
8 def inner(message, stacklevel=1):
9 warnings.warn(message, stacklevel=stacklevel)
  /external/apache-http/src/org/apache/http/
MethodNotSupportedException.java 54 * Creates a new MethodNotSupportedException with the specified detail message.
56 * @param message The exception detail message
58 public MethodNotSupportedException(final String message) {
59 super(message);
63 * Creates a new MethodNotSupportedException with the specified detail message and cause.
65 * @param message the exception detail message
69 public MethodNotSupportedException(final String message, final Throwable cause) {
70 super(message, cause)
    [all...]
ProtocolException.java 36 * For example a malformed status line or headers, a missing message body, etc.
52 * Creates a new ProtocolException with a <tt>null</tt> detail message.
59 * Creates a new ProtocolException with the specified detail message.
61 * @param message The exception detail message
63 public ProtocolException(String message) {
64 super(message);
68 * Creates a new ProtocolException with the specified detail message and cause.
70 * @param message the exception detail message
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathProcessorException.java 34 * an error message.
35 * @param message The error message.
37 public XPathProcessorException(String message)
39 super(message);
45 * an error message, and another exception
47 * @param message The error message.
50 public XPathProcessorException(String message, Exception e)
52 super(message, e)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
InvalidCipherTextException.java 5 * message.
18 * create a InvalidCipherTextException with the given message.
20 * @param message the message to be carried with the exception.
23 String message)
25 super(message);
29 * create a InvalidCipherTextException with the given message.
31 * @param message the message to be carried with the exception.
35 String message,
    [all...]
  /external/clang/test/Lexer/
pragma-message2.c 3 #pragma message "\\test" // expected-warning {{\test}}
4 // CHECK: #pragma message("\134test")
6 #pragma message("\\test") // expected-warning {{\test}}
7 // CHECK: #pragma message("\134test")
  /external/droiddriver/src/io/appium/droiddriver/exceptions/
ActionException.java 24 public ActionException(String message) {
25 super(message);
28 public ActionException(String message, Throwable cause) {
29 super(message, cause);
  /external/guice/core/src/com/google/inject/
OutOfScopeException.java 28 public OutOfScopeException(String message) {
29 super(message);
32 public OutOfScopeException(String message, Throwable cause) {
33 super(message, cause);
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverException.java 24 protected JSilverException(String message) {
25 super(message);
28 protected JSilverException(String message, Throwable cause) {
29 super(message, cause);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/
CommandSyntaxException.java 28 * @param message
30 public CommandSyntaxException(String message) {
31 super(message);
42 * @param message
45 public CommandSyntaxException(String message, Throwable cause) {
46 super(message, cause);
IllegalStateException.java 28 * @param message
30 public IllegalStateException(String message) {
31 super(message);
42 * @param message
45 public IllegalStateException(String message, Throwable cause) {
46 super(message, cause);
MockFtpServerException.java 28 * Create a new instance with the specified detail message and no cause
29 * @param message - the exception detail message
31 public MockFtpServerException(String message) {
32 super(message);
36 * Create a new instance with the specified detail message and no cause
44 * Create a new instance with the specified detail message and cause
45 * @param message - the exception detail message
48 public MockFtpServerException(String message, Throwable cause) {
    [all...]
NotLoggedInException.java 28 * @param message
30 public NotLoggedInException(String message) {
31 super(message);
42 * @param message
45 public NotLoggedInException(String message, Throwable cause) {
46 super(message, cause);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/
MockFtpServerException.java 28 * Create a new instance with the specified detail message and no cause
29 * @param message - the exception detail message
31 public MockFtpServerException(String message) {
32 super(message);
36 * Create a new instance with the specified detail message and no cause
44 * Create a new instance with the specified detail message and cause
45 * @param message - the exception detail message
48 public MockFtpServerException(String message, Throwable cause) {
    [all...]
  /external/mockito/src/main/java/org/mockito/exceptions/base/
MockitoInitializationException.java 12 public MockitoInitializationException(String message) {
13 super(message);
16 public MockitoInitializationException(String message, Throwable cause) {
17 super(message, cause);
  /external/nist-sip/java/javax/sip/
DialogDoesNotExistException.java 7 public DialogDoesNotExistException(String message) {
8 super(message);
11 public DialogDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
InvalidArgumentException.java 7 public InvalidArgumentException(String message) {
8 super(message);
11 public InvalidArgumentException(String message, Throwable cause) {
12 super(message, cause);
ObjectInUseException.java 7 public ObjectInUseException(String message) {
8 super(message);
11 public ObjectInUseException(String message, Throwable cause) {
12 super(message, cause);
PeerUnavailableException.java 7 public PeerUnavailableException(String message) {
8 super(message);
11 public PeerUnavailableException(String message, Throwable cause) {
12 super(message, cause);
ProviderDoesNotExistException.java 7 public ProviderDoesNotExistException(String message) {
8 super(message);
11 public ProviderDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
SipException.java 7 public SipException(String message) {
8 super(message);
11 public SipException(String message, Throwable cause) {
12 super(message, cause);
TransactionAlreadyExistsException.java 7 public TransactionAlreadyExistsException(String message) {
8 super(message);
11 public TransactionAlreadyExistsException(String message, Throwable cause) {
12 super(message, cause);
TransactionDoesNotExistException.java 7 public TransactionDoesNotExistException(String message) {
8 super(message);
11 public TransactionDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
TransactionUnavailableException.java 7 public TransactionUnavailableException(String message) {
8 super(message);
11 public TransactionUnavailableException(String message, Throwable cause) {
12 super(message, cause);
TransportNotSupportedException.java 7 public TransportNotSupportedException(String message) {
8 super(message);
11 public TransportNotSupportedException(String message, Throwable cause) {
12 super(message, cause);

Completed in 1181 milliseconds

12 3 4 5 6 7 8 91011>>