com.jk.data.dynamic.paging.PagingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jk-framework-data Show documentation
Show all versions of jk-framework-data Show documentation
This contains a set of API's that ease the database programming with Java, in both: JDBC and JPA Persisitnce).
/*
* 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.dynamic.paging;
import com.jk.core.exceptions.JKDataAccessException;
// TODO: Auto-generated Javadoc
/**
* The Class PagingException.
*/
public class PagingException extends JKDataAccessException {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = -1703303938691085057L;
/**
* Instantiates a new paging exception.
*/
public PagingException() {
super();
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new paging exception.
*
* @param message the message
*/
public PagingException(final String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new paging exception.
*
* @param message the message
* @param cause the cause
*/
public PagingException(final String message, final Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
/**
* Instantiates a new paging exception.
*
* @param cause the cause
*/
public PagingException(final Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}