package com.fitbank.bpm.common;

import com.fitbank.common.exception.FitbankException;

public class ThrowException extends AbstractFitSend {

    /**
     *  
     */
    private static final long serialVersionUID = 1L;

    public void execute(String pCode, String pMessage) throws Exception {
        throw new FitbankException(pCode, pMessage);
    }

}
