@farris/command-services-vue
Version:
Render schema to web page with farris ui.
10 lines (8 loc) • 457 B
TypeScript
import { FormMessageService } from '../../form-message.service';
import { IExceptionStrategy, UnAuthorizedException } from '../types';
import { ExceptionStrategy } from './exception-strategy';
export declare class UnauthorizedExceptionStrategy extends ExceptionStrategy implements IExceptionStrategy {
messagerService: FormMessageService;
constructor(messagerService: FormMessageService);
handleException(error: UnAuthorizedException): void;
}