Interface TreeTraverser.ErrorHandler
-
- Enclosing class:
- TreeTraverser
public static interface TreeTraverser.ErrorHandler
Error handler for handlingRepositoryException
s occurring on traversal. The predefinedIGNORE
error handler can be used to ignore all exceptions.
-
-
Field Summary
Fields Modifier and Type Field Description static TreeTraverser.ErrorHandler
IGNORE
Predefined error handler which ignores all exceptions.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
call(Item item, RepositoryException exception)
This call back method is called whenever an error occurs while traversing.
-
-
-
Field Detail
-
IGNORE
static final TreeTraverser.ErrorHandler IGNORE
Predefined error handler which ignores all exceptions.
-
-
Method Detail
-
call
void call(Item item, RepositoryException exception)
This call back method is called whenever an error occurs while traversing.- Parameters:
item
- The item which was the target of an operation which failed and caused the exception.exception
- The exception which occurred.
-
-