package eu.dnetlib.dlms.epub;

/**
 * Custom Exception.
 * 
 * @author alessia
 */
public class EPubException extends RuntimeException {
	/**
	 * serialization.
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * Constructs a new EPubException.
	 * 
	 * @param msg
	 *            message
	 * @param e
	 *            an existing exception
	 */
	public EPubException(final String msg, final Exception e) {
		super(msg, e);
	}

	/**
	 * Constructs a new EPubException.
	 * 
	 * @param msg
	 *            message
	 */
	public EPubException(final String msg) {
		super(msg);
	}

	/**
	 * Constructs a new EPubException.
	 * 
	 * @param e
	 *            an existing exception
	 */
	public EPubException(final Exception e) {
		super(e);
	}

}
