mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
|
import { UnleashError } from './unleash-error';
|
||
|
|
||
|
class ForbiddenError extends UnleashError {}
|
||
|
|
||
|
export default ForbiddenError;
|
||
|
module.exports = ForbiddenError;
|