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

com.github.mathiewz.slick.util.xml.SlickXMLException Maven / Gradle / Ivy

Go to download

The main purpose of this libraryis to modernize and maintain the slick2D library.

The newest version!
package com.github.mathiewz.slick.util.xml;

import com.github.mathiewz.slick.SlickException;

/**
 * An exception to describe failures in XML. Made a special case because with XML
 * to object parsing you might want to handle it differently
 *
 * @author kevin
 */
public class SlickXMLException extends SlickException {

    /**
     * Create a new exception
     *
     * @param message
     *            The message describing the failure
     */
    public SlickXMLException(String message) {
        super(message);
    }

    /**
     * Create a new exception
     *
     * @param message
     *            The message describing the failure
     * @param e
     *            The exception causing this failure
     */
    public SlickXMLException(String message, Throwable e) {
        super(message, e);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy