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