UNPKG

@lakutata/core

Version:

Lakutata Framework Core

13 lines (10 loc) 277 B
import {Exception} from '../base/abstracts/Exception' export class ModuleNotFoundException extends Exception { public district: string public errno: number | string = 'E_MODULE_NOT_FOUND' protected templates(): string[] { return [ 'Module \'{0}\' not found' ] } }