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 initial step of injection (aka preparation).
15 * Concerns every step before the user can interact
16 * with database elements (database, table, column)
17 */
18 public class InjectionFailureException extends AbstractSlidingException {
19
20 public InjectionFailureException() {
21 super("Execution stopped");
22 }
23
24 public InjectionFailureException(String message) {
25 super(message);
26 }
27
28 public InjectionFailureException(String message, Throwable e) {
29 super(message, e);
30 }
31 }