logger.log(FINEST, "getBinding txn:{0}, name:{1}", txn, name);
}
Throwable exception;
try {
checkNull("name", name);
BindingValue result = super.getBindingInternal(txn, name);
if (logger.isLoggable(FINEST)) {
logger.log(FINEST,
"getBinding txn:{0}, name:{1} returns " +
"oid:{2,number,#}",
txn, name, result.getObjectId());
}
return result;
} catch (RuntimeException e) {
exception = e;
} catch (Error e) {