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

11 lines (9 loc) 285 B
import {Exception} from "../Exception"; export class FileNotFoundException extends Exception{ /*** * @type {string} */ public name:string = FileNotFoundException.class().getName(); constructor( message : string = null ) {super(message);} } Object.package(this);