{@link #setBehavior(DbOperation, DbOperationResult)}.
*/
public static void possiblyThrowExceptionFor(DbOperation aOperation) throws DAOException, DuplicateException {
DbOperationResult opResult = getOperationResult(aOperation);
if (FakeDAOBehavior.DbOperationResult.Succeed == opResult) return;
if (FakeDAOBehavior.DbOperationResult.ThrowDAOException == opResult) throw new DAOException(FORCED_FAILURE, FORCED_EXCEPTION);
if (FakeDAOBehavior.DbOperationResult.ThrowDuplicateException == opResult) throw new DuplicateException(FORCED_FAILURE, FORCED_EXCEPTION);
}