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

12 lines
245 B
TypeScript

import { BaseHTTPError } from './base';
export default class NetworkAuthenticationRequired extends BaseHTTPError {
statusCode = 511;
title = 'Network Authentication Required';
constructor(detail: string = '') {
super(detail);
}
}