Interface LogExceptionBehaviourInterface
-
public interface LogExceptionBehaviourInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
registerException(LogChannelInterface log, Class<?> packageClass, String key, String... parameters)
When exception during logging is raised, depending on item settings we will throw exception up, or just put a log record on this event.void
registerException(LogChannelInterface log, Exception e, Class<?> packageClass, String key, String... parameters)
-
-
-
Method Detail
-
registerException
void registerException(LogChannelInterface log, Class<?> packageClass, String key, String... parameters) throws KettleDatabaseException
When exception during logging is raised, depending on item settings we will throw exception up, or just put a log record on this event. Different behaviors are created in backward compatibility with existing code. See PDI-9790.- Parameters:
packageClass
-key
-parameters
-- Throws:
KettleDatabaseException
-
registerException
void registerException(LogChannelInterface log, Exception e, Class<?> packageClass, String key, String... parameters) throws KettleDatabaseException
- Throws:
KettleDatabaseException
-
-