@tsed/platform-test-sdk
Version:
Package to test platform adapter integration with Ts.ED
13 lines (12 loc) • 362 B
JavaScript
import { InternalServerError } from "@tsed/exceptions";
export class CustomInternalError extends InternalServerError {
constructor(message) {
super(message);
this.name = "CUSTOM_INTERNAL_SERVER_ERROR";
this.headers = {};
this.errors = ["test"];
this.headers = {
"X-HEADER-ERROR": "deny"
};
}
}