ValidationException.java

package org.thewonderlemming.c4plantuml.graphml.validation;

import org.xml.sax.SAXException;

/**
 * A wrapper to a {@link SAXException}.
 *
 * @author thewonderlemming
 *
 */
public class ValidationException extends SAXException {

    private static final long serialVersionUID = -5529920982583697752L;


    /**
     * Default constructor.
     *
     * @param message the error description.
     * @param e the cause of the error.
     */
    public ValidationException(final String message, final Exception e) {
        super(message, e);
    }
}