import { LanguageService } from './languag.service'; import { FormErrorService } from './error/form-error.service'; import { IExceptionHandler, AppContext } from '@farris/devkit'; /** * 默认异常处理器 * @scope 没有提供对应Provider */ declare class ExceptionHandler implements IExceptionHandler { private formErrorService; private languageService; private applicationContext; private appContext; constructor(formErrorService: FormErrorService, languageService: LanguageService, applicationContext: AppContext); setContext(applicationContext: AppContext): void; handle(error: any): void; } export { ExceptionHandler };