mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 04:20:46 +00:00
12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
import { BaseHTTPError } from './base';
|
|
|
|
export default class Forbidden extends BaseHTTPError {
|
|
statusCode = 403;
|
|
|
|
title = 'Forbidden';
|
|
|
|
constructor(detail: string = '') {
|
|
super(detail);
|
|
}
|
|
}
|