surrealdb-driver
Version:
JavaScript Surreal Driver
17 lines (15 loc) • 332 B
text/typescript
/**
* @class AuthenticationException
* @extends {Error}
*/
export class AuthenticationException extends Error {
/**
* AuthenticationException constructor
*
* @constructor
*/
constructor() {
super('There was a problem with authentication');
this.name = AuthenticationException.name;
}
}