com.yahoo.bard.webservice.web.RowLimitReachedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fili-core Show documentation
Show all versions of fili-core Show documentation
Fili web service library provides core capabilities for RESTful aggregation navigation, query planning and
metadata
// Copyright 2016 Yahoo Inc.
// Licensed under the terms of the Apache license. Please see LICENSE.md file distributed with this work for terms.
package com.yahoo.bard.webservice.web;
/**
* A request-related or resources-related limit has been reached.
*/
public class RowLimitReachedException extends RuntimeException {
/**
* Constructor.
*/
public RowLimitReachedException() {
super();
}
/**
* Constructor.
*
* @param message Exception message
*/
public RowLimitReachedException(String message) {
super(message);
}
/**
* Constructor.
*
* @param message Exception message
* @param cause Cause of the exception
*/
public RowLimitReachedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy