mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-04 00:18:01 +01:00
7 lines
168 B
TypeScript
7 lines
168 B
TypeScript
|
import { UnleashError } from './unleash-error';
|
||
|
|
||
|
class UnauthorizedError extends UnleashError {}
|
||
|
|
||
|
export default UnauthorizedError;
|
||
|
module.exports = UnauthorizedError;
|