UNPKG

268 BTypeScriptView Raw
1import BaseError from './base-error';
2/**
3 * Thrown when a record was not found, Usually used with rejectOnEmpty mode (see message for details)
4 */
5declare class EmptyResultError extends BaseError {
6 constructor(message: string);
7}
8export default EmptyResultError;