# TemporaryRedirect Class

Module
import { TemporaryRedirect } from "@tsed/exceptions"
Source/packages/exceptions/src/redirections/TemporaryRedirect.ts

# Overview

class TemporaryRedirect extends Exception {
    static readonly STATUS = 307;
    name: string;
    constructor(message: string, origin?: Error | string | any);
}

# Members

static readonly STATUS = 307;

name: string;