mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-07 20:47:49 +00:00
12 lines
208 B
TypeScript
12 lines
208 B
TypeScript
import { BaseHTTPError } from './base';
|
|
|
|
export default class NotExtended extends BaseHTTPError {
|
|
statusCode = 510;
|
|
|
|
title = 'Not Extended';
|
|
|
|
constructor(detail: string = '') {
|
|
super(detail);
|
|
}
|
|
}
|