Searched refs:exceptionType (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DErrorPageDescriptor.java51 private String exceptionType; field in class:ErrorPageDescriptor
67 public ErrorPageDescriptor(String exceptionType, String location) { argument
68 this.exceptionType = exceptionType;
109 if (this.exceptionType == null) {
110 this.exceptionType = "";
112 return this.exceptionType;
116 public void setExceptionType(String exceptionType) { argument
117 this.exceptionType = exceptionType;
[all...]
/glassfish-3.1.2/tests/quicklook/ejb/remoteview/src/java/
H A DHelloBean.java86 public Future<String> asyncThrowException(String exceptionType) { argument
88 throwException(exceptionType);
103 public void throwException(String exceptionType) { argument
104 if( exceptionType.equals("javax.ejb.EJBException") ) {
105 throw new EJBException(exceptionType);
106 } else if( exceptionType.equals("javax.ejb.ConcurrentAccessException") ) {
107 throw new ConcurrentAccessException(exceptionType);
108 } else if( exceptionType.equals("javax.ejb.ConcurrentAccessTimeoutException") ) {
109 throw new ConcurrentAccessTimeoutException(exceptionType);
110 } else if( exceptionType
[all...]
H A DHello.java57 Future<String> asyncThrowException(String exceptionType); argument
61 void throwException(String exceptionType); argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/
H A DErrorPage.java91 private String exceptionType = null; field in class:ErrorPage
154 return (this.exceptionType);
162 * @param exceptionType The new exception type
164 public void setExceptionType(String exceptionType) { argument
166 this.exceptionType = exceptionType;
228 if (exceptionType == null) {
232 sb.append("exceptionType=");
233 sb.append(exceptionType);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/web/
H A DErrorPageNode.java82 String exceptionType = descriptor.getExceptionType();
83 if (exceptionType!=null && exceptionType.length()!=0) {
84 appendTextChild(myNode, WebTagNames.EXCEPTION_TYPE, exceptionType);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/web/
H A DExceptionType.java82 String exceptionType = errorpage.getExceptionType();
83 if ((exceptionType != null) && (exceptionType.length() > 0)) {
86 Class c = loadClass(result, exceptionType);
110 new Object[] {exceptionType, descriptor.getName()}));
123 new Object[] {exceptionType, descriptor.getName()}));
H A DErrorCode.java134 String exceptionType = errorpage.getExceptionType();
135 if (!((exceptionType != null) && (exceptionType.length() > 0))) {
175 new Object[] {new Integer(errorpage.getErrorCode()), exceptionType, descriptor.getName()}));
H A DWebArchiveClassesLoadable.java151 String exceptionType = errorPageDescriptor.getExceptionType();
152 if (exceptionType != null && !exceptionType.equals(""))
153 results.add(exceptionType);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DContext.java791 * @param exceptionType Exception type to look up
793 ErrorPage findErrorPage(String exceptionType); argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardContext.java2228 String exceptionType = errorPage.getExceptionType();
2229 if (exceptionType != null) {
2231 exceptionPages.put(exceptionType, errorPage);
3740 * @param exceptionType Exception type to look up
3742 public ErrorPage findErrorPage(String exceptionType) { argument
3744 return exceptionPages.get(exceptionType);

Completed in 213 milliseconds