UNPKG

308 BJavaScriptView Raw
1/**
2 * @copyright Copyright (c) 2019 Maxim Khorin <maksimovichu@gmail.com>
3 */
4'use strict';
5
6const Base = require('./HttpException');
7
8module.exports = class ServerErrorHttpException extends Base {
9
10 constructor (err, data) {
11 super(500, err || 'Internal server error', data);
12 }
13};
\No newline at end of file