@rym-lib/exception
v1.4.7
Published
It's Exception base class.
Readme
@rym-lib/exception
It's Exception base class.
Installation
npm i @rym-lib/exceptionUsage
import { Exception } from '@rym-lib/exception'
export class NotFoundPageException extends Exception {
constructor(public uri: string) {
super(`Not found page "${uri}".`)
}
}