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

com.dtolabs.shared.resources.ResourceXMLParserException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2016 SimplifyOps, Inc. (http://simplifyops.com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
* ResourceXMLParserException.java
* 
* User: Greg Schueler [email protected]
* Created: Apr 23, 2010 3:58:59 PM
* $Id$
*/
package com.dtolabs.shared.resources;

/**
 * ResourceXMLParserException is thrown if an error occurs in the {@link com.dtolabs.shared.resources.ResourceXMLParser}.
 *
 * @author Greg Schueler [email protected]
 * @version $Revision$
 */
public class ResourceXMLParserException extends Exception {
    public ResourceXMLParserException() {
        super();
    }

    public ResourceXMLParserException(final String msg) {
        super(msg);
    }

    public ResourceXMLParserException(final Exception cause) {
        super(cause);
    }

    public ResourceXMLParserException(final String msg, final Exception cause) {
        super(msg, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy