/**
 * Created by IR on 3/18/17.
 */
import { Action } from "./Action";
export declare class Action_ThrowException extends Action {
    private readonly message;
    protected constructor(message: string, tag?: string);
    protected execute(): Promise<void>;
}
