Searched defs:errorCode (Results 1 - 25 of 33) sorted by relevance

12

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/
H A DNotSupportedException.java99 * @param errorCode a string specifying the vendor specific error code.
101 public NotSupportedException(String message, String errorCode) { argument
102 super(message, errorCode);
H A DResourceException.java68 private String errorCode; field in class:ResourceException
111 * @param errorCode a string specifying the vendor specific error code.
113 public ResourceException(String message, String errorCode) { argument
115 this.errorCode = errorCode;
121 * @param errorCode the error code.
123 public void setErrorCode(String errorCode) { argument
124 this.errorCode = errorCode;
133 return this.errorCode;
[all...]
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DApplicationServerInternalException.java101 * @param errorCode a string specifying the vendor specific error code.
104 String message, String errorCode) {
105 super(message, errorCode);
103 ApplicationServerInternalException( String message, String errorCode) argument
H A DCommException.java94 * @param errorCode a string specifying the vendor specific error code.
96 public CommException(String message, String errorCode) { argument
97 super(message, errorCode);
H A DEISSystemException.java96 * @param errorCode a string specifying the vendor specific error code.
98 public EISSystemException(String message, String errorCode) { argument
99 super(message, errorCode);
H A DIllegalStateException.java95 * @param errorCode a string specifying the vendor specific error code.
97 public IllegalStateException(String message, String errorCode) { argument
98 super(message, errorCode);
H A DLocalTransactionException.java118 * @param errorCode a string specifying the vendor specific error code.
120 public LocalTransactionException(String message, String errorCode) { argument
121 super(message, errorCode);
H A DResourceAdapterInternalException.java103 * @param errorCode a string specifying the vendor specific error code.
105 public ResourceAdapterInternalException(String message, String errorCode) { argument
106 super(message, errorCode);
H A DResourceAllocationException.java99 * @param errorCode a string specifying the vendor specific error code.
101 public ResourceAllocationException(String message, String errorCode) { argument
102 super(message, errorCode);
H A DSecurityException.java109 * @param errorCode a string specifying the vendor specific error code.
111 public SecurityException(String message, String errorCode) { argument
112 super(message, errorCode);
H A DSharingViolationException.java96 * @param errorCode a string specifying the vendor specific error code.
98 public SharingViolationException(String message, String errorCode) { argument
99 super(message, errorCode);
H A DUnavailableException.java92 * @param errorCode a string specifying the vendor specific error code.
94 public UnavailableException(String message, String errorCode) { argument
95 super(message, errorCode);
H A DInvalidPropertyException.java101 * @param errorCode a string specifying the vendor specific error code.
103 public InvalidPropertyException(String message, String errorCode) { argument
104 super(message, errorCode);
H A DRetryableUnavailableException.java105 * @param errorCode a string specifying the vendor specific error code.
107 public RetryableUnavailableException(String message, String errorCode) { argument
108 super(message, errorCode);
/glassfish-3.1.2/transaction/javax.transaction/src/main/java/javax/transaction/
H A DSystemException.java56 public int errorCode; field in class:SystemException
81 errorCode = errcode;
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/
H A DResourceWarning.java93 * @param errorCode a string specifying the vendor specific error code.
95 public ResourceWarning(String message, String errorCode) { argument
96 super(message, errorCode);
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/work/
H A DRetryableWorkRejectedException.java104 * @param errorCode a string specifying the vendor specific error code.
106 public RetryableWorkRejectedException(String message, String errorCode) { argument
107 super(message, errorCode);
H A DWorkCompletedException.java108 * @param errorCode a string specifying the vendor specific error code.
110 public WorkCompletedException(String message, String errorCode) { argument
111 super(message, errorCode);
H A DWorkContextLifecycleListener.java89 * @param errorCode
95 void contextSetupFailed(String errorCode); argument
H A DWorkRejectedException.java100 * @param errorCode a string specifying the vendor specific error code.
102 public WorkRejectedException(String message, String errorCode) { argument
103 super(message, errorCode);
H A DWorkException.java120 * @param errorCode a string specifying the vendor specific error code.
122 public WorkException(String message, String errorCode) { argument
123 super(message, errorCode);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/
H A DHttpUtils.java102 public final static byte[] getErrorPage(String serverName, String message, String errorCode) { argument
114 sb.append(errorCode + " - ");
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DErrorPageDescriptor.java50 private int errorCode = -1; // none field in class:ErrorPageDescriptor
61 public ErrorPageDescriptor(int errorCode, String location) { argument
62 this.errorCode = errorCode;
73 return this.errorCode;
76 public void setErrorCode(int errorCode) { argument
77 this.errorCode = errorCode;
97 int errorCode = Integer.parseInt(errorSignifier);
98 this.setErrorCode(errorCode);
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/
H A DErrorPage.java85 private int errorCode = 0; field in class:ErrorPage
116 return (this.errorCode);
124 * @param errorCode The new error code
126 public void setErrorCode(int errorCode) { argument
128 this.errorCode = errorCode;
136 * @param errorCode The new error code
138 public void setErrorCode(String errorCode) { argument
141 this.errorCode = Integer.parseInt(errorCode);
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DApplicationDispatcherForward.java268 int errorCode,
283 Integer.valueOf(errorCode));
265 prepareRequestForDispatch(HttpServletRequest request, Wrapper errorServlet, String errorPageLocation, int errorCode, String errorMessage) argument

Completed in 684 milliseconds

12