Package org.glassfish.jersey.process
Class JerseyProcessingUncaughtExceptionHandler
- java.lang.Object
-
- org.glassfish.jersey.process.JerseyProcessingUncaughtExceptionHandler
-
- All Implemented Interfaces:
java.lang.Thread.UncaughtExceptionHandler
public class JerseyProcessingUncaughtExceptionHandler extends java.lang.Object implements java.lang.Thread.UncaughtExceptionHandler
Uncaught exception handler that can be used by various Jersey request processing thread pools uncaught exceptions.- Since:
- 2.17
-
-
Constructor Summary
Constructors Constructor Description JerseyProcessingUncaughtExceptionHandler()
Create new Jersey processing uncaught exception handler.JerseyProcessingUncaughtExceptionHandler(java.util.logging.Level logLevel)
Create new Jersey processing uncaught exception handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
uncaughtException(java.lang.Thread t, java.lang.Throwable e)
-
-
-
Constructor Detail
-
JerseyProcessingUncaughtExceptionHandler
public JerseyProcessingUncaughtExceptionHandler()
Create new Jersey processing uncaught exception handler.All uncaught exceptions will be logged using the
WARNING
logging level.
-
JerseyProcessingUncaughtExceptionHandler
public JerseyProcessingUncaughtExceptionHandler(java.util.logging.Level logLevel)
Create new Jersey processing uncaught exception handler.All uncaught exceptions will be logged using the supplied logging level.
- Parameters:
logLevel
- custom logging level that should be used to log uncaught exceptions.
-
-