View Javadoc
1   /*******************************************************************************
2    * Copyhacked (H) 2012-2025.
3    * This program and the accompanying materials
4    * are made available under no term at all, use it like
5    * you want, but share and discuss it
6    * every time possible with every body.
7    * 
8    * Contributors:
9    *      ron190 at ymail dot com - initial implementation
10   ******************************************************************************/
11  package com.jsql.model.exception;
12  
13  /**
14   * Exception class thrown during injection process,
15   * concerns every step when user interact with
16   * database elements (database, table, column).
17   */
18  public class LoopDetectedSlidingException extends AbstractSlidingException {
19  
20      public LoopDetectedSlidingException(String slidingWindowAllRows, String slidingWindowCurrentRows) {
21          super("Loop detected during injection, job stopped", slidingWindowAllRows, slidingWindowCurrentRows);
22      }
23  }