import { BaseException } from './base.exception';
/**
 * Exception that represents error in the program logic. This kind of exception should lead directly to a fix in your code.
 * @public
 */
export declare class LogicException extends BaseException {
    name: string;
}
//# sourceMappingURL=logic.exception.d.ts.map