mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-09 12:37:46 +00:00
12 lines
245 B
TypeScript
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);
|
|
}
|
|
}
|