export class JwtServiceAuthError extends Error { public readonly name: string public readonly context: Record public constructor(message: string, context: Record = {}) { super(message) this.name = 'JwtServiceAuthError' this.context = context || null } }