Package org.openl.rules.lang.xls.classes
Class LoggingExceptionHandler
- java.lang.Object
-
- org.openl.rules.lang.xls.classes.AbstractLocatorExceptionHandler
-
- org.openl.rules.lang.xls.classes.LoggingExceptionHandler
-
- All Implemented Interfaces:
LocatorExceptionHandler
public class LoggingExceptionHandler extends AbstractLocatorExceptionHandler
-
-
Constructor Summary
Constructors Constructor Description LoggingExceptionHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhandleClassInstatiateException(Throwable t)Handle exceptions thrown when class is instantiatedvoidhandleIOException(IOException e)Handle exceptions thrown when Input/Output operations is performedvoidhandleURLParseException(Exception e)Handle exceptions thrown when resource URL is parsed
-
-
-
Method Detail
-
handleURLParseException
public void handleURLParseException(Exception e)
Description copied from interface:LocatorExceptionHandlerHandle exceptions thrown when resource URL is parsed- Specified by:
handleURLParseExceptionin interfaceLocatorExceptionHandler- Overrides:
handleURLParseExceptionin classAbstractLocatorExceptionHandler- Parameters:
e- exception
-
handleIOException
public void handleIOException(IOException e)
Description copied from interface:LocatorExceptionHandlerHandle exceptions thrown when Input/Output operations is performed- Specified by:
handleIOExceptionin interfaceLocatorExceptionHandler- Overrides:
handleIOExceptionin classAbstractLocatorExceptionHandler- Parameters:
e- exception
-
handleClassInstatiateException
public void handleClassInstatiateException(Throwable t)
Description copied from interface:LocatorExceptionHandlerHandle exceptions thrown when class is instantiated- Specified by:
handleClassInstatiateExceptionin interfaceLocatorExceptionHandler- Overrides:
handleClassInstatiateExceptionin classAbstractLocatorExceptionHandler- Parameters:
t- exception. Note: sometimes ClassLoader can throw a subclass of Error while a class instantiating.
-
-