@kerthin/domain
Version:
Kerthin Domain (based on DDD)
11 lines (10 loc) • 322 B
TypeScript
import { Exception } from './';
export declare type ExceptionType = {
[name: string]: Array<Exception>;
};
export declare class ValidationDictException extends Exception {
private readonly exceptions?;
constructor(message: string, exceptions?: ExceptionType);
parseExceptions(): any;
private foobar;
}