UNPKG

269 BTypeScriptView Raw
1import ConnectionError from '../connection-error';
2/**
3 * Thrown when a connection to a database is refused due to insufficient privileges
4 */
5declare class AccessDeniedError extends ConnectionError {
6 constructor(parent: Error);
7}
8export default AccessDeniedError;