Searched refs:errorCode (Results 1 - 25 of 91) sorted by relevance

1234

/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DInternalException.java37 private int errorCode; field in class:InternalException
41 this.errorCode = 0;
46 this.errorCode = 0;
49 public InternalException(int errorCode) { argument
51 this.errorCode = errorCode;
54 public InternalException(String s, int errorCode) { argument
56 this.errorCode = errorCode;
59 public int errorCode() { method in class:InternalException
[all...]
/openjdk9/jdk/src/java.base/share/classes/com/sun/security/ntlm/
H A DNTLMException.java73 private int errorCode; field in class:NTLMException
77 * @param errorCode the error code, which can be retrieved by
78 * the {@link #errorCode() } method.
82 public NTLMException(int errorCode, String msg) { argument
84 this.errorCode = errorCode;
91 public int errorCode() { method in class:NTLMException
92 return errorCode;
/openjdk9/jdk/src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/
H A DUcryptoException.java133 private final int errorCode; field in class:UcryptoException
143 static String getErrorMessage(int errorCode) { argument
145 if (errorCode < ERROR_MSG.length) {
146 message = ERROR_MSG[errorCode];
148 message = "0x" + Integer.toHexString(errorCode);
158 this.errorCode = rv;
163 errorCode = -1;
168 errorCode = -1;
177 return errorCode;
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/
H A DMalformedFrame.java5 private int errorCode; field in class:MalformedFrame
13 * @param errorCode - error code, as specified by RFC 7540
16 public MalformedFrame(int errorCode, String msg) { argument
17 this(errorCode, 0 , msg);
22 * @param errorCode - error code, as specified by RFC 7540
26 public MalformedFrame(int errorCode, int errorStream, String msg) { argument
28 this.errorCode = errorCode;
35 return super.toString() + " MalformedFrame, Error: " + ErrorFrame.stringForCode(errorCode)
40 return errorCode;
[all...]
H A DErrorFrame.java76 int errorCode; field in class:ErrorFrame
78 public ErrorFrame(int streamid, int flags, int errorCode) { argument
80 this.errorCode = errorCode;
85 return super.toString() + " Error: " + stringForCode(errorCode);
89 return this.errorCode;
92 public void setErrorCode(int errorCode) { argument
93 this.errorCode = errorCode;
H A DResetFrame.java34 public ResetFrame(int streamid, int errorCode) { argument
35 super(streamid, 0, errorCode);
H A DGoAwayFrame.java36 public GoAwayFrame(int lastStream, int errorCode) { argument
37 this(lastStream, errorCode, new byte[0]);
40 public GoAwayFrame(int lastStream, int errorCode, byte[] debugData) { argument
41 super(0, 0, errorCode);
/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DJDWPException.java31 short errorCode; field in class:JDWPException
33 JDWPException(short errorCode) { argument
35 this.errorCode = errorCode;
38 short errorCode() { method in class:JDWPException
39 return errorCode;
43 switch (errorCode) {
67 return new InternalException("Unexpected JDWP Error: " + errorCode, errorCode);
H A DPacket.java46 short errorCode; field in class:Packet
69 b[9] = (byte)((errorCode >>> 8) & 0xff);
70 b[10] = (byte)((errorCode >>> 0) & 0xff);
111 p.errorCode = (short)((b9 << 8) + (b10 << 0));
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/res/
H A DXResourceBundleBase.java37 * @param errorCode Error code
41 abstract public String getMessageKey(int errorCode); argument
46 * @param errorCode Error code
50 abstract public String getWarningKey(int errorCode); argument
/openjdk9/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/
H A DValidationException.java47 * errorCode and linkedException will default to null.
57 * specific errorCode. The linkedException will default to null.
60 * @param errorCode a string specifying the vendor specific error code
62 public ValidationException(String message, String errorCode) { argument
63 this( message, errorCode, null );
68 * vendor specific errorCode will default to null.
78 * linkedException. The errorCode will default to null.
89 * specific errorCode, and linkedException.
92 * @param errorCode a string specifying the vendor specific error code
95 public ValidationException(String message, String errorCode, Throwabl argument
[all...]
H A DPropertyException.java44 * errorCode and linkedException will default to null.
54 * vendor specific errorCode. The linkedException will default to null.
57 * @param errorCode a string specifying the vendor specific error code
59 public PropertyException(String message, String errorCode) { argument
60 super(message, errorCode);
65 * message and vendor specific errorCode will default to null.
75 * linkedException. The errorCode will default to null.
86 * specific errorCode, and linkedException.
89 * @param errorCode a string specifying the vendor specific error code
94 String errorCode,
92 PropertyException( String message, String errorCode, Throwable exception) argument
[all...]
H A DUnmarshalException.java49 * errorCode and linkedException will default to null.
59 * specific errorCode. The linkedException will default to null.
62 * @param errorCode a string specifying the vendor specific error code
64 public UnmarshalException( String message, String errorCode ) {
65 this( message, errorCode, null );
70 * vendor specific errorCode will default to null.
80 * linkedException. The errorCode will default to null.
91 * specific errorCode, and linkedException.
94 * @param errorCode a string specifying the vendor specific error code
97 public UnmarshalException( String message, String errorCode, Throwabl argument
[all...]
H A DMarshalException.java47 * errorCode and linkedException will default to null.
57 * specific errorCode. The linkedException will default to null.
60 * @param errorCode a string specifying the vendor specific error code
62 public MarshalException( String message, String errorCode ) {
63 this( message, errorCode, null );
68 * vendor specific errorCode will default to null.
78 * linkedException. The errorCode will default to null.
89 * specific errorCode, and linkedException.
92 * @param errorCode a string specifying the vendor specific error code
95 public MarshalException( String message, String errorCode, Throwabl argument
[all...]
H A DJAXBException.java45 private String errorCode; field in class:JAXBException
57 * errorCode and linkedException will default to null.
67 * specific errorCode. The linkedException will default to null.
70 * @param errorCode a string specifying the vendor specific error code
72 public JAXBException(String message, String errorCode) { argument
73 this( message, errorCode, null );
78 * vendor specific errorCode will default to null.
88 * linkedException. The errorCode will default to null.
99 * specific errorCode, and linkedException.
102 * @param errorCode
105 JAXBException(String message, String errorCode, Throwable exception) argument
[all...]
H A DTypeConstraintException.java54 private String errorCode; field in class:TypeConstraintException
66 * errorCode and linkedException will default to null.
76 * specific errorCode. The linkedException will default to null.
79 * @param errorCode a string specifying the vendor specific error code
81 public TypeConstraintException(String message, String errorCode) { argument
82 this( message, errorCode, null );
87 * vendor specific errorCode will default to null.
97 * linkedException. The errorCode will default to null.
108 * vendor specific errorCode, and linkedException.
111 * @param errorCode
114 TypeConstraintException(String message, String errorCode, Throwable exception) argument
[all...]
/openjdk9/jdk/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/
H A DSendFailed.java44 private int errorCode; field in class:SendFailed
51 int errorCode,
54 this.errorCode = errorCode;
89 public int errorCode() { method in class:SendFailed
90 return errorCode;
105 sb.append(", errorCode: ").append(errorCode);
48 SendFailed(int assocId, SocketAddress address, ByteBuffer buffer, int errorCode, int streamNumber) argument
/openjdk9/jdk/test/javax/transaction/testng/test/transaction/
H A DXAExceptionTests.java44 && ex.errorCode == 0);
55 && ex.errorCode == 0);
70 && ex.errorCode == 0);
82 && ex.errorCode == error);
92 ex.errorCode = error;
95 && ex.errorCode == error);
/openjdk9/jdk/src/java.sql/share/classes/javax/transaction/xa/
H A DXAException.java46 public int errorCode; field in class:XAException
72 errorCode = errcode;
/openjdk9/jdk/src/jdk.jdi/share/native/libdt_shmem/
H A DSharedMemory.h41 void throwShmemException(JNIEnv *env, char *message, jint errorCode);
/openjdk9/jdk/src/jdk.sctp/share/classes/com/sun/nio/sctp/
H A DSendFailedNotification.java76 * <P> The errorCode gives the reason why the send failed, and if set, will
81 public abstract int errorCode(); method in class:SendFailedNotification
/openjdk9/jdk/src/jdk.accessibility/windows/native/libjavaaccessbridge/
H A DAccessBridgeATInstance.cpp88 DWORD errorCode; local
97 errorCode = GetLastError();
98 PrintDebugString(" Failed to CreateFileMapping for %s, error: %X", memoryMappedFileName, errorCode);
99 return errorCode;
108 errorCode = GetLastError();
109 PrintDebugString(" Failed to MapViewOfFile for %s, error: %X", memoryMappedFileName, errorCode);
110 return errorCode;
/openjdk9/jdk/test/sun/net/www/http/HttpClient/
H A DB6726695.java78 int errorCode = -1;
82 errorCode = http.getResponseCode();
84 if (errorCode != 417) {
105 errorCode = http.getResponseCode();
106 if (errorCode != 200) {
107 throw new RuntimeException("Response code is " + errorCode);
129 errorCode = http.getResponseCode();
130 if (errorCode != 200) {
131 throw new RuntimeException("Response code is " + errorCode);
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/rngom/parse/compact/
H A DTokenMgrError.java89 int errorCode; field in class:TokenMgrError
184 errorCode = reason;
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/scd/
H A DTokenMgrError.java59 int errorCode; field in class:TokenMgrError
152 errorCode = reason;

Completed in 243 milliseconds

1234