# NotFound Class

Module
import { NotFound } from "@tsed/exceptions"
Source/packages/exceptions/src/clientErrors/NotFound.ts

# Overview

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

# Members

static readonly STATUS = 404;

name: string;