14 lines
No EOL
304 B
JavaScript
14 lines
No EOL
304 B
JavaScript
import { HttpError } from 'flaska'
|
|
|
|
export class HttpErrorInternal extends HttpError {
|
|
constructor(message, inner) {
|
|
super(500, message);
|
|
|
|
Error.captureStackTrace(this, HttpError);
|
|
|
|
let proto = Object.getPrototypeOf(this);
|
|
proto.name = 'HttpErrorInternal';
|
|
|
|
this.inner = inner
|
|
}
|
|
} |