C4ParseException.java

package org.thewonderlemming.c4plantuml.graphml.parse;

/**
 * A wrapper exception that holds ANTLR 4 parsing errors.
 *
 * @author thewonderlemming
 *
 */
public class C4ParseException extends RuntimeException {

    private static final long serialVersionUID = 1208788129930070718L;


    /**
     * Default constructor.
     *
     * @param errMsg the parsing error description.
     */
    public C4ParseException(final String errMsg) {
        super(errMsg);
    }
}