UNPKG

lib-utils-ts

Version:

<img src="https://img.shields.io/npm/v/lib-utils-ts"/> <img src="https://img.shields.io/snyk/vulnerabilities/npm/lib-utils-ts"/> <img src="https://img.shields.io/npm/l/lib-utils-ts"/> <img src="https://img.shields.io/github/languages/top/devGnode/lib-util

15 lines 304 B
import {Exception} from "../Exception"; /**** * @NumericOverflowException */ export class NumericOverflowException extends Exception{ /**** * */ name = NumericOverflowException.class().getName(); /**** * */ constructor(ex:string) {super(ex);} } Object.package(this);