/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/ |
H A D | NotSupportedException.java | 99 * @param errorCode a string specifying the vendor specific error code. 101 public NotSupportedException(String message, String errorCode) { argument 102 super(message, errorCode);
|
H A D | ResourceException.java | 68 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 D | ApplicationServerInternalException.java | 101 * @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 D | CommException.java | 94 * @param errorCode a string specifying the vendor specific error code. 96 public CommException(String message, String errorCode) { argument 97 super(message, errorCode);
|
H A D | EISSystemException.java | 96 * @param errorCode a string specifying the vendor specific error code. 98 public EISSystemException(String message, String errorCode) { argument 99 super(message, errorCode);
|
H A D | IllegalStateException.java | 95 * @param errorCode a string specifying the vendor specific error code. 97 public IllegalStateException(String message, String errorCode) { argument 98 super(message, errorCode);
|
H A D | LocalTransactionException.java | 118 * @param errorCode a string specifying the vendor specific error code. 120 public LocalTransactionException(String message, String errorCode) { argument 121 super(message, errorCode);
|
H A D | ResourceAdapterInternalException.java | 103 * @param errorCode a string specifying the vendor specific error code. 105 public ResourceAdapterInternalException(String message, String errorCode) { argument 106 super(message, errorCode);
|
H A D | ResourceAllocationException.java | 99 * @param errorCode a string specifying the vendor specific error code. 101 public ResourceAllocationException(String message, String errorCode) { argument 102 super(message, errorCode);
|
H A D | SecurityException.java | 109 * @param errorCode a string specifying the vendor specific error code. 111 public SecurityException(String message, String errorCode) { argument 112 super(message, errorCode);
|
H A D | SharingViolationException.java | 96 * @param errorCode a string specifying the vendor specific error code. 98 public SharingViolationException(String message, String errorCode) { argument 99 super(message, errorCode);
|
H A D | UnavailableException.java | 92 * @param errorCode a string specifying the vendor specific error code. 94 public UnavailableException(String message, String errorCode) { argument 95 super(message, errorCode);
|
H A D | InvalidPropertyException.java | 101 * @param errorCode a string specifying the vendor specific error code. 103 public InvalidPropertyException(String message, String errorCode) { argument 104 super(message, errorCode);
|
H A D | RetryableUnavailableException.java | 105 * @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 D | SystemException.java | 56 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 D | ResourceWarning.java | 93 * @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 D | RetryableWorkRejectedException.java | 104 * @param errorCode a string specifying the vendor specific error code. 106 public RetryableWorkRejectedException(String message, String errorCode) { argument 107 super(message, errorCode);
|
H A D | WorkCompletedException.java | 108 * @param errorCode a string specifying the vendor specific error code. 110 public WorkCompletedException(String message, String errorCode) { argument 111 super(message, errorCode);
|
H A D | WorkContextLifecycleListener.java | 89 * @param errorCode 95 void contextSetupFailed(String errorCode); argument
|
H A D | WorkRejectedException.java | 100 * @param errorCode a string specifying the vendor specific error code. 102 public WorkRejectedException(String message, String errorCode) { argument 103 super(message, errorCode);
|
H A D | WorkException.java | 120 * @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 D | HttpUtils.java | 102 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 D | ErrorPageDescriptor.java | 50 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 D | ErrorPage.java | 85 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 D | ApplicationDispatcherForward.java | 268 int errorCode, 283 Integer.valueOf(errorCode)); 265 prepareRequestForDispatch(HttpServletRequest request, Wrapper errorServlet, String errorPageLocation, int errorCode, String errorMessage) argument
|