# Unauthorized Class

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

# Overview

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

# Members

static readonly STATUS = 401;

name: string;