Searched defs:thrown (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DExceptionInInitializerError.java30 * An <code>ExceptionInInitializerError</code> is thrown to indicate that an
52 * ExceptionInInitializerError(Throwable thrown) constructor was
72 * saving a reference to the <code>Throwable</code> object thrown for
76 * @param thrown The exception thrown
78 public ExceptionInInitializerError(Throwable thrown) { argument
80 this.exception = thrown;
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DKeyFactoryTest.java590 private void checkException(String message, Exception thrown, Class<? extends Exception> expected) { argument
591 if (thrown == null) {
595 } else if (expected == thrown.getClass()) {
600 fail(message + ", unexpected exception: " + thrown + ", expected: " + expected.getName());
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogRecord.java127 private Throwable thrown; field in class:LogRecord
446 return thrown;
452 * @param thrown a throwable (may be null)
454 public void setThrown(Throwable thrown) { argument
455 this.thrown = thrown;
H A DLogger.java531 * is thrown.
560 // thrown by setupResourceInfo().
866 * Note that the thrown argument is stored in the LogRecord thrown
873 * @param thrown Throwable associated with log message.
875 public void log(Level level, String msg, Throwable thrown) { argument
880 lr.setThrown(thrown);
892 * Note that the thrown argument is stored in the LogRecord thrown
898 * @param thrown Throwabl
903 log(Level level, Throwable thrown, Supplier<String> msgSupplier) argument
1038 logp(Level level, String sourceClass, String sourceMethod, String msg, Throwable thrown) argument
1072 logp(Level level, String sourceClass, String sourceMethod, Throwable thrown, Supplier<String> msgSupplier) argument
1282 logrb(Level level, String sourceClass, String sourceMethod, String bundleName, String msg, Throwable thrown) argument
1320 logrb(Level level, String sourceClass, String sourceMethod, ResourceBundle bundle, String msg, Throwable thrown) argument
1444 throwing(String sourceClass, String sourceMethod, Throwable thrown) argument
[all...]
/libcore/ojluni/src/main/java/sun/util/logging/
H A DPlatformLogger.java461 abstract void doLog(Level level, String msg, Throwable thrown); argument
508 void doLog(Level level, String msg, Throwable thrown) { argument
510 outputStream().print(format(level, msg, thrown));
560 private synchronized String format(Level level, String msg, Throwable thrown) { argument
563 if (thrown != null) {
567 thrown.printStackTrace(pw);

Completed in 212 milliseconds