Searched refs:exception (Results 1 - 25 of 284) sorted by relevance

1234567891011>>

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DConnectionEvent.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
57 * <LI>Optionally, an exception indicating the connection related error.
58 * Note that exception is used for CONNECTION_ERROR_OCCURRED.
109 private Exception exception; field in class:ConnectionEvent
134 * @param exception exception about to be thrown to the application
138 Exception exception) {
140 this.exception = exception;
162 * Get the exception
137 ConnectionEvent(ManagedConnection source, int eid, Exception exception) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DResponseUtil.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
81 IOException exception = null;
91 exception = e;
96 return exception;
112 IOException exception = null;
122 exception = e;
127 return exception;
H A DInstanceSupport.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
211 * @param exception Exception that occurred
214 Throwable exception) {
220 exception);
290 * @param exception Exception that occurred
295 Throwable exception) {
301 request, response, exception);
363 * @param exception Exception that occurred
366 Throwable exception) {
372 exception);
213 fireInstanceEvent(InstanceEvent.EventType type, Filter filter, Throwable exception) argument
292 fireInstanceEvent(InstanceEvent.EventType type, Filter filter, ServletRequest request, ServletResponse response, Throwable exception) argument
365 fireInstanceEvent(InstanceEvent.EventType type, Servlet servlet, Throwable exception) argument
443 fireInstanceEvent(InstanceEvent.EventType type, Servlet servlet, ServletRequest request, ServletResponse response, Throwable exception) argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/resource/common/
H A DResourceStatus.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
47 * Holds the status code/msg (including the exception) of the appropriate resource
58 Throwable exception; field in class:ResourceStatus
85 return exception;
89 exception = t;
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/soap/
H A DMessageDenormalizer.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
80 * Converts an exception to a SOAP Message. It uses the Server fault code in the soap
83 * @param exception exception instance
85 * @return denormalized exception instance.
87 SOAPWrapper denormalizeMessage(Exception exception); argument
90 * Converts an exception to a SOAP Message. It uses the faultCode passed. The code
93 * @param exception exception instance
96 * @return denormalized exception instanc
98 denormalizeMessage(Exception exception, String faultCode) argument
[all...]
H A DMessageDenormalizerImpl.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
133 catch (Exception exception)
135 // This should not happen. In case it does, log the exception and
138 mLogger.severe( mStringTranslator.getString("SBC_ERROR_DETAILS", exception.toString()) );
207 catch (Exception exception)
210 mLogger.warning( mStringTranslator.getString("SBC_ERROR_DETAILS", exception.toString()) );
214 wrapper = denormalizeMessage(exception);
227 * Converts an exception to a SOAP Message. It uses the default Server fault code
230 * @param exception exception instanc
234 denormalizeMessage(Exception exception) argument
248 denormalizeMessage(Exception exception, String faultCode) argument
536 writeFault(Exception exception, String faultCode, Writer writer) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DInstanceEvent.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
216 * @param exception Exception that occurred
219 Throwable exception) {
225 this.exception = exception;
262 * @param exception Exception that occurred
266 Throwable exception) {
274 this.exception = exception;
304 * @param exception Exceptio
218 InstanceEvent(Wrapper wrapper, Filter filter, EventType type, Throwable exception) argument
264 InstanceEvent(Wrapper wrapper, Filter filter, EventType type, ServletRequest request, ServletResponse response, Throwable exception) argument
306 InstanceEvent(Wrapper wrapper, Servlet servlet, EventType type, Throwable exception) argument
352 InstanceEvent(Wrapper wrapper, Servlet servlet, EventType type, ServletRequest request, ServletResponse response, Throwable exception) argument
375 private Throwable exception = null; field in class:InstanceEvent
[all...]
H A DLogger.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
66 * A <b>Logger</b> is a generic interface for the message and exception
161 * Writes the specified exception, and message, to a servlet log file.
163 * <code>log(msg, exception)</code> instead. This method is deprecated
168 * @param exception An <code>Exception</code> to be reported
171 public void log(Exception exception, String msg); argument
176 * <code>Throwable</code> exception to the servlet log file. The name
181 * exception
182 * @param throwable The <code>Throwable</code> error or exception
200 * Writes the specified message and exception t
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEjbAsyncTask.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
108 inv.exception = ite.getCause();
109 inv.exceptionFromBeanMethod = inv.exception;
111 inv.exception = t;
116 // Use the same exception handling logic here as is used in the
118 // exception that would be received in the synchronous case will
122 if (inv.exception != null) {
125 inv.exception, inv.method.getExceptionTypes());
128 inv.exception, inv.method.getExceptionTypes());
H A DWebServiceInvocationHandler.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
168 inv.exception = new UnmarshalException
173 throw inv.exception;
194 inv.exception = nsme;
196 inv.exception = ite.getCause();
198 inv.exception = c;
207 if (inv.exception != null) {
208 if(inv.exception instanceof java.lang.RuntimeException) {
209 throw (java.lang.RuntimeException)inv.exception;
210 } else if (inv.exception instanceo
[all...]
/glassfish-3.1.2/connectors/work-management/src/main/java/com/sun/enterprise/connectors/work/
H A DWorkCoordinator.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
59 * exception conditions and does JTS coordination.
85 private volatile WorkException exception; field in class:WorkCoordinator
247 //If exception is not null, the work has already been rejected.
278 exception = new WorkRejectedException();
279 exception.setErrorCode(WorkException.START_TIMED_OUT);
282 new WorkEvent(this, WorkEvent.WORK_REJECTED, work, exception));
295 return !isTimedOut() && exception == null;
303 * Retrieves the exception created during the work's execution.
308 return exception;
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DResult.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
44 * Used to carry a result or an exception justifying why a result could not be produced
76 public Throwable exception() { method in class:Result
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/work/
H A DOneWork.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
66 private Exception exception = null; field in class:OneWork
150 * Get the exception, if any produced while executng
154 return this.exception;
162 this.exception = ex;
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/trace/
H A DTraceUtil.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
115 * Else an exception is raised.
118 * @exception InvalidTraceLevelException if an error occurs
244 * @param exception an <code>XAException</code> to get info from
248 public static String getXAExceptionInfo(XAException exception, Logger logger) { argument
249 Class<? extends XAException> aClass = exception.getClass();
251 return exception.getMessage();
256 String oracleError = "" + invokeMethod(exception, aClass, "getOracleError", logger);
257 String oracleSQLError = "" + invokeMethod(exception, aClass, "getOracleSQLError", logger);
258 String xaError = "" + invokeMethod(exception, aClas
[all...]
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/comm/
H A DMessageExchangeTransportImpl.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
92 public void sendError(Exception exception) { argument
95 "Sending error to the consumer - " + exception);
96 if(exception != null) {
97 me.setError(exception);
152 Exception exception = messageSender.getException();
153 if(exception != null)
154 throw exception;
H A DMessageExchangeTransport.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
78 public void sendError(Exception exception); argument
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardWrapperValve.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
106 * @exception IOException if an input/output error occurred
107 * @exception ServletException if a servlet error occurred
223 exception(request, response, e);
229 exception(request, response, e);
240 exception(request, response, e);
245 exception(request, response, e);
287 exception(request, response, e);
292 exception(request, response, e);
297 // exception(reques
462 exception(Request request, Response response, Throwable exception) argument
[all...]
/glassfish-3.1.2/admin/jmx-remote/client/src/main/java/com/sun/enterprise/admin/jmx/remote/comm/
H A DServletConnection.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
226 IOException exception = null;
228 exception = new java.net.UnknownHostException(UNKNOWN_HOST +
232 exception = new java.net.ConnectException(INVALID_HOST_PORT);
238 exception = new IOException(UNAUTHORIZED_ACCESS);
241 exception = e;
244 throw exception;
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/codegen/
H A DRemoteGenerator.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
91 * @exception GeneratorException.
153 for(Class exception : m.getExceptionTypes()) {
154 exceptionList.add(Type.type(exception));
155 if( exception.getName().equals("java.rmi.RemoteException") ) {
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/
H A DXmlHashMapProvider.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
75 } catch (InputException exception) {
77 map.put("error", "Entity Parsing Error: " + exception.getMessage());
80 ///throw new RuntimeException(exception);
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/admin/monitor/callflow/
H A DListener.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
112 * such as exception, if any.
114 public void ejbMethodEnd(final String requestId, final Throwable exception); argument
132 * such as exception, if any.
134 public void webMethodEnd(final String requestId, final Throwable exception); argument
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/
H A DPOAProtocolMgr.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
313 // A runtime exception will be propagated if validation fails.
324 * Map the EJB/RMI exception to a protocol-specific (e.g. CORBA) exception
327 public Throwable mapException(Throwable exception) { argument
330 Throwable mappedException = exception;
332 if ( exception instanceof java.rmi.NoSuchObjectException
333 || exception instanceof NoSuchObjectLocalException )
337 } else if ( exception instanceof java.rmi.AccessException
338 || exception instanceo
[all...]
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/businessmethod/
H A DBusinessMethodExceptionCheck.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
141 for (Class exception : exceptions) {
144 if(remoteException.getName().equals(exception.getName())) {
160 new Object[] {method.getName(),exception.getName()}));
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/ejb30/
H A DCallbackMethodException.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
58 * Any exception other than derived from java.lang.RuntimeException or
59 * java.rmi.RemoteException is an application exception.
100 for (Class exception : excepClasses) {
101 if(!(RuntimeException.class.isAssignableFrom(exception) ||
102 java.rmi.RemoteException.class.isAssignableFrom(exception))) {
106 "Method [ {0} ] throws an application exception.",
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/
H A DHTMLActionReporter.java20 * exception as provided by Oracle in the GPL Version 2 section of the License
76 if (exception!=null) {
79 exception.printStackTrace(writer);

Completed in 297 milliseconds

1234567891011>>