UNPKG

@farris/command-services-vue

Version:

Render schema to web page with farris ui.

13 lines (11 loc) 473 B
import { FormMessageService } from '../../form-message.service'; import { IExceptionStrategy, ServerException } from '../types'; import { ExceptionStrategy } from './exception-strategy'; /** * 信息级别异常处理 */ export declare class InfoExceptionStrategy extends ExceptionStrategy implements IExceptionStrategy { messagerService: FormMessageService; constructor(messagerService: FormMessageService); handleException(error: ServerException): void; }