All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mediaworx.opencms.moduleutils.manifestgenerator.exceptions.OpenCmsMetaXmlParseException Maven / Gradle / Ivy

The newest version!


package com.mediaworx.opencms.moduleutils.manifestgenerator.exceptions;

/*-
 * #%L
 * OpenCms Maven Plugin
 * %%
 * Copyright (C) 2017 - 2018 Silpion IT-Solutions GmbH (https://www.silpion.de/)
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

/**
 * Exception used when there's an error parsing xml for the manifest
 */
public class OpenCmsMetaXmlParseException extends Exception {

    /**
     * Creates a new OpenCmsMetaXmlParseException with a throwable that was causing the exception
     * @param s description of the error
     * @param cause the root cause of the Exception
     */
    public OpenCmsMetaXmlParseException(String s, Throwable cause) {
        super(s, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy