Searched defs:msg (Results 101 - 125 of 898) sorted by relevance

1234567891011>>

/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/jaxp/src/javax/xml/transform/
H A DTransformerConfigurationException.java45 * @param msg The error message for the exception.
47 public TransformerConfigurationException(String msg) { argument
48 super(msg);
68 * @param msg The detail message.
70 public TransformerConfigurationException(String msg, Throwable e) { argument
71 super(msg, e);
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/copyobject/
H A DReflectiveCopyException.java33 public ReflectiveCopyException( String msg )
35 super( msg ) ;
38 public ReflectiveCopyException( String msg, Throwable t ) argument
40 super( msg, t ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/legacy/interceptor/
H A DUnknownType.java37 public UnknownType(String msg) argument
39 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/javax/security/auth/callback/
H A DUnsupportedCallbackException.java64 * @param msg the detail message.
66 public UnsupportedCallbackException(Callback callback, String msg) { argument
67 super(msg);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DSyncProviderException.java85 * @param msg the detail message
87 public SyncProviderException(String msg) { argument
88 super(msg);
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificateException.java53 * @param msg the detail message.
55 public CertificateException(String msg) { argument
56 super(msg);
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DInvalidKeySpecException.java59 * @param msg the detail message.
61 public InvalidKeySpecException(String msg) { argument
62 super(msg);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpPduFactory.java67 * @param msg The <CODE>SnmpMsg</CODE> to be decoded.
73 public SnmpPdu decodeSnmpPdu(SnmpMsg msg) throws SnmpStatusException ; argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicationException.java58 public CommunicationException(Throwable target, String msg) { argument
59 super(msg);
66 public CommunicationException(String msg) { argument
67 super(msg);
/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/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DXMLStreamException2.java37 public XMLStreamException2(String msg) { argument
38 super(msg);
45 public XMLStreamException2(String msg, Throwable th) { argument
46 super(msg, th);
49 public XMLStreamException2(String msg, Location location) { argument
50 super(msg, location);
53 public XMLStreamException2(String msg, Location location, Throwable th) { argument
54 super(msg, location, th);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DGmbalException.java40 public GmbalException( String msg ) {
41 super( msg ) ;
44 public GmbalException( String msg, Throwable thr ) { argument
45 super( msg, thr ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DServiceConfigurationError.java48 public ServiceConfigurationError(String msg) { argument
49 super(msg);
/openjdk7/jdk/test/java/awt/Focus/ClearGlobalFocusOwnerTest/
H A DClearGlobalFocusOwnerTest.java83 TestFailedException(String msg) { argument
84 super("Test failed: " + msg);
92 TestErrorException(String msg) { argument
93 super("Unexpected error: " + msg);
/openjdk7/jdk/test/java/awt/Focus/CloseDialogActivateOwnerTest/
H A DCloseDialogActivateOwnerTest.java101 TestFailedException(String msg) { argument
102 super("Test failed: " + msg);
110 TestErrorException(String msg) { argument
111 super("Unexpected error: " + msg);
/openjdk7/jdk/test/java/awt/Focus/DeiconifiedFrameLoosesFocus/
H A DDeiconifiedFrameLoosesFocus.java98 TestFailedException(String msg) { argument
99 super("Test failed: " + msg);
/openjdk7/jdk/test/java/awt/Focus/RemoveAfterRequest/
H A DRemoveAfterRequest.java89 TestFailedException(String msg) { argument
90 super("Test failed: " + msg);
98 TestErrorException(String msg) { argument
99 super("Unexpected error: " + msg);
/openjdk7/jdk/test/java/io/File/
H A DUnicode.java35 static void fail(String msg) { argument
37 System.err.println(msg);
/openjdk7/jdk/test/java/net/CookieHandler/
H A DB6644726.java208 private static void fail(String msg) throws Exception { argument
209 throw new RuntimeException(msg);
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DUnboundSocketTests.java36 static void check(String msg, Object actual, Object expected) { argument
37 System.out.format("%s expected: %s, actual: %s", msg, expected, actual);
46 static void checkIsAnyLocalAddress(String msg, InetAddress actual) { argument
47 System.out.format("%s actual: %s", msg, actual);
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DStateTestService.java57 private static void reply(String msg) throws IOException { argument
60 byte b[] = msg.getBytes("UTF-8");
/openjdk7/jdk/test/java/nio/charset/spi/
H A DTest.java34 private static void fail(String csn, String msg) { argument
35 throw new RuntimeException(csn + ": " + msg);
/openjdk7/jdk/test/java/nio/file/FileSystem/
H A DBasic.java39 static void check(boolean okay, String msg) { argument
41 throw new RuntimeException(msg);

Completed in 60 milliseconds

1234567891011>>