Searched defs:maxLevels (Results 1 - 1 of 1) sorted by relevance

/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/
H A DOrientDBRepoService.java737 * @param maxLevels the maximum level of causes to check, avoiding the cost
741 private boolean isCauseRecordDuplicatedException(Throwable ex, int maxLevels) { argument
742 return isCauseException (ex, ORecordDuplicatedException.class, maxLevels);
750 * @param maxLevels the maximum level of causes to check, avoiding the cost
754 private boolean isCauseIndexException(Throwable ex, int maxLevels) { argument
755 return isCauseException (ex, OIndexException.class, maxLevels);
763 * @param maxLevels the maximum level of causes to check, avoiding the cost
767 private boolean isCauseConcurrentModificationException(Throwable ex, int maxLevels) { argument
768 return isCauseException (ex, OConcurrentModificationException.class, maxLevels);
777 * @param maxLevels th
781 isCauseException(Throwable ex, Class<?> clazz, int maxLevels) argument
[all...]

Completed in 30 milliseconds