Skip to content

StatusFamily

@tsed/exceptions

Usage

typescript
import { StatusFamily } from "@tsed/exceptions";

See /packages/specs/exceptions/src/types/core/StatusFamily.ts.

Overview

ts
enum StatusFamily {
    "3xx" = "3xx",
    "4xx" = "4xx",
    "5xx" = "5xx"
}

"3xx"

ts
"3xx" = "3xx",

"4xx"

ts
"4xx" = "4xx",

"5xx"

ts
"5xx" = "5xx"

Released under the MIT License.