Skip to content

MovedTemporarily

@tsed/exceptions

Usage

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

See /packages/specs/exceptions/src/types/redirections/MovedTemporarily.ts.

Overview

ts
class MovedTemporarily extends RedirectException {
    static readonly STATUS = 302;
    name: string;
    constructor(message: string, origin?: Error | string | any);
}

static readonly STATUS

ts
static readonly STATUS = 302;

name

ts
name: string;

Released under the MIT License.