![JAR search and dependency download from the Maven repository](/logo.png)
com.jk.data.exceptions.JKDataAccessManyRowsException Maven / Gradle / Ivy
/*
* Copyright 2002-2022 Dr. Jalal Kiswani.
* Email: [email protected]
* Check out https://smart-api.com for more details
*
* All the opensource projects of Dr. Jalal Kiswani are free for personal and academic use only,
* for commercial usage and support, please contact the author.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jk.data.exceptions;
import com.jk.core.exceptions.JKDataAccessException;
// TODO: Auto-generated Javadoc
/**
* The Class JKDataAccessManyRowsException.
*/
public class JKDataAccessManyRowsException extends JKDataAccessException {
/** The query string. */
private String queryString;
/** The paramters. */
private Object[] paramters;
/**
* Instantiates a new JK data access many rows exception.
*/
public JKDataAccessManyRowsException() {
super();
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new JK data access many rows exception.
*
* @param message the message
* @param cause the cause
*/
public JKDataAccessManyRowsException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new JK data access many rows exception.
*
* @param message the message
*/
public JKDataAccessManyRowsException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new JK data access many rows exception.
*
* @param cause the cause
*/
public JKDataAccessManyRowsException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new JK data access many rows exception.
*
* @param queryString the query string
* @param paramters the paramters
*/
public JKDataAccessManyRowsException(String queryString, Object[] paramters) {
this.queryString = queryString;
this.paramters = paramters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy