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

com.buschmais.xo.api.XOException Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package com.buschmais.xo.api;

/**
 * The exception thrown by the XO implementation.
 */
public class XOException extends RuntimeException {

    /**
     * Constructor.
     *
     * @param message The message.
     */
    public XOException(String message) {
        super(message);
    }

    /**
     * Constructor.
     *
     * @param message The message.
     * @param cause   The cause.
     */
    public XOException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy