UNPKG

@tsed/platform-test-sdk

Version:
13 lines (12 loc) 362 B
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" }; } }