UNPKG

surrealdb-driver

Version:
17 lines (15 loc) 332 B
/** * @class AuthenticationException * @extends {Error} */ export class AuthenticationException extends Error { /** * AuthenticationException constructor * * @constructor */ constructor() { super('There was a problem with authentication'); this.name = AuthenticationException.name; } }