# BandwidthLimitExceeded Class

Module
import { BandwidthLimitExceeded } from "@tsed/exceptions"
Source/packages/exceptions/src/serverErrors/BandwidthLimitExceeded.ts

# Overview

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

# Members

static readonly STATUS = 509;

name: string;