# Conflict Class

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

# Overview

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

# Members

static readonly STATUS = 409;

name: string;