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

123

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DInternalException.java36 private int errorCode; field in class:InternalException
40 this.errorCode = 0;
45 this.errorCode = 0;
48 public InternalException(int errorCode) { argument
50 this.errorCode = errorCode;
53 public InternalException(String s, int errorCode) { argument
55 this.errorCode = errorCode;
58 public int errorCode() { method in class:InternalException
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DNTLMException.java72 private int errorCode; field in class:NTLMException
76 * @param errorCode the error code, which can be retrieved by
77 * the {@link #errorCode() } method.
81 public NTLMException(int errorCode, String msg) { argument
83 this.errorCode = errorCode;
90 public int errorCode() { method in class:NTLMException
91 return errorCode;
/openjdk7/jdk/src/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) {
65 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));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/res/
H A DXResourceBundleBase.java38 * @param errorCode Error code
42 abstract public String getMessageKey(int errorCode); argument
47 * @param errorCode Error code
51 abstract public String getWarningKey(int errorCode); argument
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
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 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 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 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
65 * errorCode and linkedException will default to null.
75 * specific errorCode. The linkedException will default to null.
78 * @param errorCode a string specifying the vendor specific error code
80 public TypeConstraintException(String message, String errorCode) { argument
81 this( message, errorCode, null );
86 * vendor specific errorCode will default to null.
96 * linkedException. The errorCode will default to null.
107 * vendor specific errorCode, and linkedException.
110 * @param errorCode
113 TypeConstraintException(String message, String errorCode, Throwable exception) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpSendFailed.java44 private int errorCode; field in class:SctpSendFailed
51 int errorCode,
54 this.errorCode = errorCode;
89 public int errorCode() { method in class:SctpSendFailed
90 return errorCode;
105 sb.append(", errorCode: ").append(errorCode);
48 SctpSendFailed(int assocId, SocketAddress address, ByteBuffer buffer, int errorCode, int streamNumber) argument
/openjdk7/corba/src/share/classes/javax/transaction/xa/
H A DXAException.java41 public int errorCode; field in class:XAException
70 errorCode = errcode;
/openjdk7/jdk/src/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
/openjdk7/jdk/src/share/native/com/sun/tools/jdi/
H A DSharedMemory.h41 void throwShmemException(JNIEnv *env, char *message, jint errorCode);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpRequestTree.java87 final int errorCode = errorStatus;
90 return errorCode;
92 int mappedErrorCode = errorCode;
96 if (errorCode == SnmpStatusException.noSuchObject)
100 else if (errorCode == SnmpStatusException.noSuchInstance)
110 final int errorCode = errorStatus;
112 return errorCode;
114 int mappedErrorCode = errorCode;
118 if (errorCode ==
121 mappedErrorCode = errorCode;
[all...]
/openjdk7/jdk/src/windows/native/java/util/
H A DWindowsPreferences.c37 int errorCode=-1; local
40 errorCode = RegOpenKeyEx((HKEY)hKey, str, 0, securityMask, &handle);
43 tmp[1]= errorCode;
60 int errorCode; local
63 errorCode = RegCreateKeyEx((HKEY)hKey, str, 0, NULL,
68 tmp[1]= errorCode;
165 int errorCode = -1; local
166 errorCode = RegQueryInfoKey((HKEY)hKey, NULL, NULL, NULL,
171 tmp[1]= (int)errorCode;
/openjdk7/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);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DTokenMgrError.java61 int errorCode; field in class:TokenMgrError
154 errorCode = reason;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DTokenMgrError.java70 int errorCode; field in class:TokenMgrError
164 errorCode = reason;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DTokenMgrError.java89 int errorCode; field in class:TokenMgrError
184 errorCode = reason;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DTokenMgrError.java59 int errorCode; field in class:TokenMgrError
152 errorCode = reason;
/openjdk7/jdk/src/share/instrument/
H A DJavaExceptions.h83 createThrowableFromJVMTIErrorCode(JNIEnv * jnienv, jvmtiError errorCode);
139 createAndThrowThrowableFromJVMTIErrorCode(JNIEnv * jnienv, jvmtiError errorCode);
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_mutex.c187 jlong errorCode; local
254 errorCode = (*env)->CallLongMethod(env, pkcs11Exception, methodID);
255 rv = jLongToCKULong(errorCode);
282 jlong errorCode; local
348 errorCode = (*env)->CallLongMethod(env, pkcs11Exception, methodID);
349 rv = jLongToCKULong(errorCode);
376 jlong errorCode; local
438 errorCode = (*env)->CallLongMethod(env, pkcs11Exception, methodID);
439 rv = jLongToCKULong(errorCode);
466 jlong errorCode; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DPKCS11Exception.java262 public PKCS11Exception(long errorCode) { argument
263 errorCode_ = errorCode;

Completed in 104 milliseconds

123