Files
plexjs/src/http/errors/Forbidden.ts
2023-10-26 21:12:05 -05:00

12 lines
203 B
TypeScript

import { BaseHTTPError } from './base';
export default class Forbidden extends BaseHTTPError {
statusCode = 403;
title = 'Forbidden';
constructor(detail: string = '') {
super(detail);
}
}