Interface ErrorLogger
-
- All Known Implementing Classes:
PluginErrorLogger
public interface ErrorLogger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
critical(java.lang.Throwable throwable, ErrorContext context)
default <T extends ExceptionWithContext>
voidcritical(T throwable)
void
error(java.lang.Throwable throwable, ErrorContext context)
default <T extends ExceptionWithContext>
voiderror(T throwable)
void
warn(java.lang.Throwable throwable, ErrorContext context)
default <T extends ExceptionWithContext>
voidwarn(T throwable)
-
-
-
Method Detail
-
critical
default <T extends ExceptionWithContext> void critical(T throwable)
-
critical
void critical(java.lang.Throwable throwable, ErrorContext context)
-
error
default <T extends ExceptionWithContext> void error(T throwable)
-
error
void error(java.lang.Throwable throwable, ErrorContext context)
-
warn
default <T extends ExceptionWithContext> void warn(T throwable)
-
warn
void warn(java.lang.Throwable throwable, ErrorContext context)
-
-