File size: 216 Bytes
aec3094
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { ResponseError } from './abstract/response.error';

export class UnauthenticatedError extends ResponseError {
	constructor(message = 'Unauthenticated', hint?: string) {
		super(message, 401, 401, hint);
	}
}