package lbl.als.SCA;

    /** SCA Exception is thrown if get or send operations fail
     *  The exception string includes the sca status and the pv name that failed.
     * @see JSca
     */
public class JScaException extends RuntimeException {
    public JScaException (String msg) {
        super(msg);
    }
}