Interface AbstractMessageListenerContainer.JavaLangErrorHandler
-
- Enclosing class:
- AbstractMessageListenerContainer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface AbstractMessageListenerContainer.JavaLangErrorHandler
A handler forError
on the container thread(s).- Since:
- 2.2.12
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(Error error)
Handle the error; typically, the JVM will be terminated.
-
-
-
Method Detail
-
handle
void handle(Error error)
Handle the error; typically, the JVM will be terminated.- Parameters:
error
- the error.
-
-