import ApiClientError from './ApiClientError'; class UnauthorizedError extends ApiClientError { constructor(message?: string) { super(401, message); this.name = 'UnauthorizedError'; } } export default UnauthorizedError;