Interface ExceptionLogger<E>
-
- Type Parameters:
E
- type of the logged exception
public interface ExceptionLogger<E>
A generic exception logging implementation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
log(E exception)
Logs the provided exception.
-
-
-
Method Detail
-
log
void log(E exception)
Logs the provided exception.- Parameters:
exception
- exception to log
-
-