Searched refs:exception (Results 226 - 250 of 372) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/beans/
H A DStatement.java8 * particular file as subject to the "Classpath" exception as provided
191 catch (PrivilegedActionException exception) {
192 throw exception.getException();
256 catch (NoSuchMethodException exception) {
359 catch (NoSuchMethodException exception) {
H A DDefaultPersistenceDelegate.java8 * particular file as subject to the "Classpath" exception as provided
237 catch (Exception exception) {
238 out.getExceptionListener().exceptionThrown(exception);
244 } catch (IntrospectionException exception) {
410 } catch (IntrospectionException exception) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DPerInterface.java8 * particular file as subject to the "Classpath" exception as provided
127 if (list.size() == 1) { // helpful exception message
143 * Before throwing an exception, we check to see whether the
150 * Since this method is either going to throw an exception or use
167 // Construct the exception that we will probably throw
170 final ReflectionException exception =
174 throw exception; // No compatibility requirement here
182 // We don't expect an exception here but if we get one then
187 throw exception;
216 throw exception;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJMethod.java8 * particular file as subject to the "Classpath" exception as provided
145 * Add an exception to the list of exceptions that this
148 * @param exception
149 * Name of an exception that this method may throw
151 public JMethod _throws(JClass exception) { argument
152 getThrows().add(exception);
156 public JMethod _throws(Class<? extends Throwable> exception) { argument
157 return _throws(outer.owner().ref(exception));
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DtoArray.java47 public Throwable exception = null;
/openjdk7/jdk/test/javax/swing/border/
H A DTest6981576.java77 catch (Exception exception) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DAbstractWrapperBeanGenerator.java8 * particular file as subject to the "Classpath" exception as provided
47 * Finds request/response wrapper and exception bean memebers.
286 * Computes and sorts exception bean members for a given exception as per
288 * exception and its superclasses(except getCause, getLocalizedMessage,
293 * But if the exception has @XmlType its values are honored. Only the
297 * @param exception
298 * @return list of properties in the correct order for an exception bean
300 public Collection<A> collectExceptionBeanMembers(C exception) { argument
302 getExceptionProperties(exception, field
328 getExceptionProperties(C exception, TreeMap<String, A> fields) argument
[all...]
H A DRuntimeModeler.java8 * particular file as subject to the "Classpath" exception as provided
285 private Class getExceptionBeanClass(String className, Class exception, String name, String namespace) { argument
290 logger.fine("Dynamically creating exception bean Class " + className);
291 return WrapperBeanGenerator.createExceptionBean(className, exception, targetNamespace, name, namespace, loader);
443 * Returns true if an exception is service specific exception as per JAX-WS rules.
444 * @param exception
447 private boolean isServiceException(Class<?> exception) { argument
448 return EXCEPTION_CLASS.isAssignableFrom(exception) &&
449 !(RUNTIME_EXCEPTION_CLASS.isAssignableFrom(exception) || REMOTE_EXCEPTION_CLAS
1095 getWSDLExceptionFaultInfo(Class exception) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAPFaultBuilder.java8 * particular file as subject to the "Classpath" exception as provided
76 * Gives the {@link DetailType} for a Soap 1.1 or Soap 1.2 message that can be used to create either a checked exception or
77 * a protocol specific exception
107 //return ProtocolException if the detail is not present or there is no checked exception
109 // No soap detail, doesnt look like its a checked exception
110 // throw a protocol exception
114 //check if the detail is a checked exception, if not throw a ProtocolException
118 //No Checked exception for the received detail QName, throw a SOAPFault exception
130 Exception exception
314 getFaultDetail(CheckedExceptionImpl ce, Throwable exception) argument
328 createDetailFromUserDefinedException(CheckedExceptionImpl ce, Object exception) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.hpp32 // This file provides the basic support for exception handling in the VM.
37 // than one pending exception per thread. All functions that can throw
38 // an exception carry a THREAD argument (usually the last argument and
39 // declared with the TRAPS macro). Throwing an exception means setting
40 // a pending exception in the thread. Upon return from a function that
41 // can throw an exception, we must check if an exception is pending.
65 const char* _exception_file; // file information for exception (debugging only)
66 int _exception_line; // line information for exception (debugging only)
87 void set_pending_exception(oop exception, cons
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXmlUtil.java8 * particular file as subject to the "Classpath" exception as provided
329 public void warning(SAXParseException exception) {
332 public void error(SAXParseException exception) throws SAXException {
333 throw exception;
336 public void fatalError(SAXParseException exception) throws SAXException {
337 throw exception;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp287 Handle exception; local
288 oop exception_oop = klass->allocate_instance(CHECK_(exception));
289 exception = Handle(THREAD, exception_oop);
291 java_lang_Throwable::fill_in_stack_trace(exception);
293 return exception;
301 Handle exception = get_preinitialized_exception( variable
304 THROW_HANDLE(exception); variable
309 // lookup exception klass
318 // create exception
319 Handle exception variable
333 Handle exception = Exceptions::new_exception(thread, s, klass_name); variable
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinWorkerThread.java7 * particular file as subject to the "Classpath" exception as provided
372 * @param exception the exception causing this thread to abort due
375 protected void onTermination(Throwable exception) { argument
379 pool.deregisterWorker(this, exception);
381 if (exception == null) // but if so, at least rethrown
382 exception = ex;
384 if (exception != null)
385 UNSAFE.throwException(exception);
395 Throwable exception
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpRequestTree.java8 * particular file as subject to the "Classpath" exception as provided
282 // request? or whether we should raise an exception:
326 SnmpStatusException exception)
328 // The index in the exception must correspond to
332 throw new SnmpStatusException(exception, getVarIndex(var)+1);
335 throw exception;
343 final int errorCode = mapGetException(exception.getStatus(),
368 SnmpStatusException exception)
370 // The index in the exception must correspond to
374 throw new SnmpStatusException(exception, getVarInde
325 registerGetException(SnmpVarBind var, SnmpStatusException exception) argument
367 registerSetException(SnmpVarBind var, SnmpStatusException exception) argument
390 registerCheckException(SnmpVarBind var, SnmpStatusException exception) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Filter.java433 // us in the exception handling code because it won't be delivered as part
436 public void error(SAXParseException exception) throws SAXException argument
439 clientErrorHandler.error(exception);
442 public void fatalError(SAXParseException exception) throws SAXException argument
447 clientErrorHandler.error(exception);
454 public void warning(SAXParseException exception) throws SAXException argument
457 clientErrorHandler.error(exception);
551 * very quickly by throwing a reserved exception to it. If the stream is
650 if(DEBUG)System.out.println("Active IncrementalSAXSource_Filter normal stop exception");
657 if(DEBUG)System.out.println("Active IncrementalSAXSource_Filter normal stop exception");
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DServerRequestInfoImpl.java8 * particular file as subject to the "Classpath" exception as provided
262 * Any containing the exception to be returned to the client.
272 } else if( exception != null ) {
273 result = exceptionToAny( exception );
276 // and exception are null.
295 // raised an exception. As per ptc/00-08-06, section 21.3.14,
312 // raised an exception. As per ptc/00-08-06, section 21.3.14,
555 // _REVISIT_ PI RTF Issue: No exception list on server side.
741 // the interceptor raises an exception the queued service contexts
742 // will be put in the exception respons
[all...]
H A DClientRequestInfoImpl.java8 * particular file as subject to the "Classpath" exception as provided
343 * Contains the exception to be returned to the client.
349 cachedReceivedException = exceptionToAny( exception );
360 * The CORBA::RepositoryId of the exception to be returned to the client.
368 if( exception == null ) {
369 // Note: exception should never be null here since we will
373 } else if( exception instanceof SystemException ) {
374 String name = exception.getClass().getName();
376 } else if( exception instanceof ApplicationException ) {
377 result = ((ApplicationException)exception)
[all...]
/openjdk7/corba/src/share/classes/org/omg/PortableInterceptor/
H A DInterceptors.idl8 * particular file as subject to the "Classpath" exception as provided
137 * The <code>ForwardRequest</code> exception is the means by which an
139 * occur with the new object given in the exception. This behavior of
142 * it is passed through the ORB as is normal for a user exception.
144 * If an Interceptor throws a <code>ForwardRequest</code> exception in
153 exception ForwardRequest {
234 * This exception is thrown when <code>get_slot</code> or
237 exception InvalidSlot {};
269 * @exception InvalidSlot thrown if get_slot is called on a slot that
271 * @exception BAD_INV_ORDE
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.cpp143 // We could potential get an async. exception at this point.
146 oop exception = PENDING_EXCEPTION; local
148 Thread::send_async_exception(JavaThread::current()->threadObj(), exception);
/openjdk7/jdk/src/share/back/
H A Dinvoker.c8 * particular file as subject to the "Classpath" exception as provided
247 request->exception = 0;
634 WITH_LOCAL_REFS(env, 2) { /* 1 for obj return values, 1 for exception */
636 jobject exception; local
657 request->exception = NULL;
658 exception = JNI_FUNC_PTR(env,ExceptionOccurred)(env);
659 if (exception != NULL) {
661 saveGlobalRef(env, exception, &(request->exception));
721 exc = request->exception;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java8 * particular file as subject to the "Classpath" exception as provided
395 public void error(SAXParseException exception) { argument
396 cer.error(exception);
400 public void fatalError(SAXParseException exception) { argument
401 cer.fatalError(exception);
405 public void warning(SAXParseException exception) { argument
406 cer.warning(exception);
410 public void info(SAXParseException exception) { argument
411 cer.info(exception);
/openjdk7/jdk/test/com/sun/jdi/
H A DRequestReflectionTest.java191 if (!exr.exception().equals(exceptionClass)) {
194 exr.exception());
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/
H A Dfdlibm.h9 * particular file as subject to the "Classpath" exception as provided
90 struct exception { struct
171 extern int matherr __P((struct exception *));
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DClassTypeImpl.java8 * particular file as subject to the "Classpath" exception as provided
149 * Since we got this exception,
154 * no-op, and we should allow it without an exception.
245 if (ret.exception != null) {
246 throw new InvocationException(ret.exception);
293 if (ret.exception != null) {
294 throw new InvocationException(ret.exception);
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DInstanceFinder.java8 * particular file as subject to the "Classpath" exception as provided
99 catch (Exception exception) {

Completed in 52 milliseconds

1234567891011>>