UNPKG

@farris/command-services-vue

Version:

Render schema to web page with farris ui.

11 lines (10 loc) 586 B
import { FormMessageService } from "../../form-message.service"; import { LanguageService } from "../../language.service"; import { IExceptionStrategy, UnAuthorizedException } from "../types"; import { ExceptionStrategy } from "./exception-strategy"; export declare class UnauthorizedExceptionStrategy extends ExceptionStrategy implements IExceptionStrategy { messagerService: FormMessageService; languageService: LanguageService; constructor(messagerService: FormMessageService, languageService: LanguageService); handleException(error: UnAuthorizedException): void; }