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

/libcore/luni/src/main/java/java/util/logging/
H A DLogRecord.java115 private Throwable thrown; field in class:LogRecord
179 this.thrown = null;
445 return thrown;
451 * @param thrown
455 public void setThrown(Throwable thrown) { argument
456 this.thrown = thrown;
H A DLogger.java808 * Logs a message indicating that an exception is thrown. A log record with
817 * @param thrown
821 Throwable thrown) {
830 record.setThrown(thrown);
982 * @param thrown
986 public void log(Level logLevel, String msg, Throwable thrown) { argument
993 record.setThrown(thrown);
1143 * @param thrown
1147 String msg, Throwable thrown) {
1156 record.setThrown(thrown);
820 throwing(String sourceClass, String sourceMethod, Throwable thrown) argument
1146 logp(Level logLevel, String sourceClass, String sourceMethod, String msg, Throwable thrown) argument
1300 logrb(Level logLevel, String sourceClass, String sourceMethod, String bundleName, String msg, Throwable thrown) argument
[all...]
/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());

Completed in 73 milliseconds