static ExceptionHandler |
Exceptions.ignore() |
Deprecated.
|
static ExceptionHandler |
Exceptions.log() |
Returns ExceptionHandler that writes all exceptions to common logger.
|
static ExceptionHandler |
Exceptions.log(org.slf4j.Logger logger) |
Creates ExceptionHandler that writes all exceptions to the specified logger .
|
static ExceptionHandler |
Exceptions.log(org.slf4j.Logger logger, String message) |
Creates ExceptionHandler that writes all exceptions to the specified logger with the specified message .
|
static ExceptionHandler |
Exceptions.log(org.slf4j.Logger logger, Supplier<String> message) |
Creates ExceptionHandler that writes all exceptions to the specified logger with lazily evaluated message .
|
static ExceptionHandler |
Exceptions.pass() |
Deprecated.
|
static ExceptionHandler |
Exceptions.propagate() |
Returns ExceptionHandler that propagates (lets through) all exceptions.
|
static ExceptionHandler |
Exceptions.silence() |
Returns ExceptionHandler that silently ignores all exceptions.
|