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 StoppedByUserSlidingException extends AbstractSlidingException {
19      
20      private static final String STR_STOPPED_BY_USER = "Stopped by user";
21  
22      public StoppedByUserSlidingException() {
23          super(StoppedByUserSlidingException.STR_STOPPED_BY_USER);
24      }
25      
26      public StoppedByUserSlidingException(String slidingWindowAllRows) {
27          super(StoppedByUserSlidingException.STR_STOPPED_BY_USER, slidingWindowAllRows);
28      }
29  
30      public StoppedByUserSlidingException(String slidingWindowAllRows, String slidingWindowCurrentRows) {
31          super(StoppedByUserSlidingException.STR_STOPPED_BY_USER, slidingWindowAllRows, slidingWindowCurrentRows);
32      }
33  }