Searched refs:msg (Results 76 - 100 of 1315) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpError.java34 public HttpError (String msg) { argument
35 super (msg);
/openjdk7/jdk/src/share/sample/nio/server/
H A DMalformedRequestException.java51 MalformedRequestException(String msg) { argument
52 super(msg);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DSOQLException.java28 public SOQLException(String msg) { argument
29 super(msg);
32 public SOQLException(String msg, Throwable cause) { argument
33 super(msg, cause);
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPathBuilderException.java68 * @param msg the detail message
70 public CertPathBuilderException(String msg) { argument
71 super(msg);
95 * @param msg the detail message
100 public CertPathBuilderException(String msg, Throwable cause) { argument
101 super(msg, cause);
H A DCertStoreException.java68 * @param msg the detail message
70 public CertStoreException(String msg) { argument
71 super(msg);
94 * @param msg the detail message
99 public CertStoreException(String msg, Throwable cause) { argument
100 super(msg, cause);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/oql/
H A DOQLException.java40 public OQLException(String msg) { argument
41 super(msg);
44 public OQLException(String msg, Throwable cause) { argument
45 super(msg, cause);
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleSyntaxException.java40 public LocaleSyntaxException(String msg) { argument
41 this(msg, 0);
44 public LocaleSyntaxException(String msg, int errorIndex) { argument
45 super(msg);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DDispatch.java42 * The client is responsible for ensuring that the <code>msg</code> object
46 * @param msg An object that will form the message or payload of
55 public T invoke(T msg); argument
62 * The client is responsible for ensuring that the <code>msg</code> object
66 * @param msg An object that will form the message or payload of
73 public Response<T> invokeAsync(T msg); argument
80 * The client is responsible for ensuring that the <code>msg</code> object
84 * @param msg An object that will form the message or payload of
96 public Future<?> invokeAsync(T msg, AsyncHandler<T> handler); argument
105 * The client is responsible for ensuring that the <code>msg</cod
115 invokeOneWay(T msg) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/
H A DDatatypeException.java44 public DatatypeException( int index, String msg ) {
45 super(msg);
48 public DatatypeException( String msg ) {
49 this(UNKNOWN,msg);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/stream/
H A DXMLStreamReaderMessage.java40 public final XMLStreamReader msg; field in class:XMLStreamReaderMessage
48 * @param msg
52 public XMLStreamReaderMessage(Packet properties, XMLStreamReader msg) { argument
54 this.msg = msg;
66 * @param msg
70 public XMLStreamReaderMessage(Packet properties, AttachmentSet attachments, XMLStreamReader msg) { argument
72 this.msg = msg;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileError.cpp32 void ClassFileParser::classfile_parse_error(const char* msg, TRAPS) { argument
35 msg, _class_name->as_C_string());
38 void ClassFileParser::classfile_parse_error(const char* msg, int index, TRAPS) { argument
41 msg, index, _class_name->as_C_string());
44 void ClassFileParser::classfile_parse_error(const char* msg, const char *name, TRAPS) { argument
47 msg, name, _class_name->as_C_string());
50 void ClassFileParser::classfile_parse_error(const char* msg, int index, const char *name, TRAPS) { argument
53 msg, index, name, _class_name->as_C_string());
56 void StackMapStream::stackmap_format_error(const char* msg, TRAPS) { argument
61 "StackMapTable format error: %s", msg
[all...]
/openjdk7/jdk/src/share/back/
H A Derror_messages.h39 void jdiAssertionFailed(char *fileName, int lineNumber, char *msg);
45 #define EXIT_ERROR(error,msg) \
49 jvmtiErrorText((jvmtiError)error), error, (msg==NULL?"":msg), \
51 debugInit_exit((jvmtiError)error, msg); \
61 #define JDI_ASSERT_MSG(expression, msg) \
64 jdiAssertionFailed(__FILE__, __LINE__, msg); \
68 #define JDI_ASSERT_FAILED(msg) \
69 jdiAssertionFailed(__FILE__, __LINE__, msg)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVMVersionMismatchException.java37 StringBuffer msg = new StringBuffer();
38 msg.append("Supported versions are ");
39 msg.append(supportedVersions);
40 msg.append(". Target VM is ");
41 msg.append(targetVersion);
42 return msg.toString();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/cmdline/getopt/
H A DGetOptsException.java31 public GetOptsException(String msg){ argument
32 super(msg);
H A DIllegalArgumentException.java29 public IllegalArgumentException(String msg){ argument
30 super(msg);
H A DMissingOptArgException.java32 public MissingOptArgException(String msg){ argument
33 super(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DInternalError.java32 * @param msg the error message
34 public InternalError(String msg) { argument
35 super(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DMessageHandler.java30 public void displayMessage(String msg) { argument
31 System.err.println(msg);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DDVFactoryException.java39 public DVFactoryException(String msg) { argument
40 super(msg);
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamException.java55 * @param msg the message to report
57 public XMLStreamException(String msg) { argument
58 super(msg);
75 * @param msg the message to report
77 public XMLStreamException(String msg, Throwable th) { argument
78 super(msg, th);
86 * @param msg the message to report
89 public XMLStreamException(String msg, Location location, Throwable th) { argument
92 "Message: "+msg);
100 * @param msg th
103 XMLStreamException(String msg, Location location) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/login/
H A DLoginException.java53 * @param msg the detail message.
55 public LoginException(String msg) { argument
56 super(msg);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialException.java49 * @param msg the detail message
51 public SerialException(String msg) { argument
52 super(msg);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DSyncFactoryException.java51 * @param msg the detail message.
53 public SyncFactoryException(String msg) { argument
54 super(msg);
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DInvalidParameterSpecException.java61 * @param msg the detail message.
63 public InvalidParameterSpecException(String msg) { argument
64 super(msg);
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenDataException.java53 * @param msg the detail message.
55 public OpenDataException(String msg) { argument
56 super(msg);

Completed in 135 milliseconds

1234567891011>>