Searched defs:ex (Results 1 - 15 of 15) sorted by relevance

/libcore/luni/src/main/java/java/nio/charset/
H A DCoderMalfunctionError.java35 * @param ex
38 public CoderMalfunctionError(Exception ex) { argument
39 super(ex);
/libcore/luni/src/main/java/java/security/
H A DPrivilegedActionException.java27 public PrivilegedActionException(Exception ex) { argument
28 super(ex);
/libcore/luni/src/main/java/java/lang/
H A DClassNotFoundException.java27 private Throwable ex; field in class:ClassNotFoundException
60 ex = exception;
69 return ex;
80 return ex;
H A DThread.java1134 * @param ex the exception that was thrown
1136 void uncaughtException(Thread thread, Throwable ex); argument
1232 } catch (InterruptedException ex) {
/libcore/luni/src/main/java/javax/sql/
H A DConnectionEvent.java33 private SQLException ex; field in class:ConnectionEvent
61 ex = theException;
72 return ex;
/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMTestIncompatibleException.java35 public DOMTestIncompatibleException(Throwable ex, argument
37 if (ex != null) {
38 msg = ex.toString();
H A DJAXPDOMTestDocumentBuilderFactory.java63 catch (ParserConfigurationException ex) {
64 throw new DOMTestIncompatibleException(ex, null);
96 public void error(SAXParseException ex) { argument
99 parseException = ex;
103 public void warning(SAXParseException ex) { argument
107 public void fatalError(SAXParseException ex) { argument
109 parseException = ex;
129 catch (Exception ex) {
130 parseException = ex;
/libcore/luni/src/main/java/java/sql/
H A DSQLException.java217 * Obsolete. Appends {@code ex} to the end of this chain.
219 public void setNextException(SQLException ex) { argument
221 next.setNextException(ex);
223 next = ex;
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDOMTestCase.java29 } catch (Exception ex) {
30 parseException = ex;
60 } catch (MalformedURLException ex) {
61 // fail("Unexpected exception " + ex.getMessage());
86 } catch (MalformedURLException ex) {
87 fail("Unexpected exception " + ex.getMessage());
206 public void error(SAXParseException ex) { argument
209 parseException = ex;
213 public void warning(SAXParseException ex) { argument
217 public void fatalError(SAXParseException ex) { argument
[all...]
/libcore/luni/src/main/java/java/net/
H A DNetworkInterface.java164 } catch (Exception ex) {
165 throw rethrowAsSocketException(ex);
192 } catch (Exception ex) {
193 throw rethrowAsSocketException(ex);
218 } catch (Exception ex) {
219 throw rethrowAsSocketException(ex);
223 private static SocketException rethrowAsSocketException(Exception ex) throws SocketException { argument
225 result.initCause(ex);
474 } catch (Exception ex) {
475 throw rethrowAsSocketException(ex);
[all...]
/libcore/luni/src/main/java/java/util/logging/
H A DHandler.java248 * @param ex
253 protected void reportError(String msg, Exception ex, int code) { argument
254 this.errorMan.error(msg, ex, code);
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/
H A DDocumentBuilderFactoryTest.java392 } catch (Exception ex) {
393 parseException = ex;
422 } catch (Exception ex) {
423 parseException = ex;
454 } catch (Exception ex) {
455 parseException = ex;
477 } catch (Exception ex) {
478 parseException = ex;
736 // } catch (Exception ex) {
737 // parseException = ex;
929 error(SAXParseException ex) argument
936 warning(SAXParseException ex) argument
940 fatalError(SAXParseException ex) argument
[all...]
/libcore/luni/src/main/java/java/io/
H A DObjectOutputStream.java1056 Throwable ex = e.getTargetException();
1057 if (ex instanceof RuntimeException) {
1058 throw (RuntimeException) ex;
1059 } else if (ex instanceof Error) {
1060 throw (Error) ex;
1062 throw (IOException) ex;
1303 * Write exception {@code ex} into the receiver. It is assumed the
1314 * @param ex
1321 private void writeNewException(Exception ex) throws IOException { argument
1324 writeObjectInternal(ex, fals
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinTask.java71 * displayed for example using {@code ex.printStackTrace()}) of both
391 final Throwable ex; field in class:ForkJoinTask.ExceptionNode
394 ExceptionNode(ForkJoinTask<?> task, Throwable ex, ExceptionNode next) { argument
396 this.ex = ex;
407 private int setExceptionalCompletion(Throwable ex) { argument
417 t[i] = new ExceptionNode(this, ex, t[i]);
490 Throwable ex;
491 if (e == null || (ex = e.ex)
866 completeExceptionally(Throwable ex) argument
[all...]
H A DForkJoinPool.java1086 Throwable ex = null;
1091 ex = e;
1101 if (!tryTerminate(false) && ex != null &&
1103 SneakyThrow.sneakyThrow(ex); // android-changed
1180 final void deregisterWorker(ForkJoinWorkerThread w, Throwable ex) { argument
1212 if (ex != null) // possibly replace if died abnormally
1460 * using {@code ex.printStackTrace()}) of both the current thread

Completed in 7972 milliseconds