All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dooapp.gaedo.exceptions.BadRangeException Maven / Gradle / Ivy

package com.dooapp.gaedo.exceptions;

import com.dooapp.gaedo.CrudServiceException;
import com.dooapp.gaedo.finders.QueryStatement;

/**
 * Exception thrown when a range, defined for the {@link QueryStatement#get(int, int)} is incorrect
 * @author ndx
 *
 */
public class BadRangeException extends CrudServiceException {

	public BadRangeException() {
	}

	public BadRangeException(String message) {
		super(message);
	}

	public BadRangeException(Throwable cause) {
		super(cause);
	}

	public BadRangeException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy