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

com.marklogic.xcc.exceptions.XccException Maven / Gradle / Ivy

The newest version!
package com.marklogic.xcc.exceptions;

/**
 * Superclass of all exceptions specific to XCC. This is an abstract class and
 * will never be thrown directly. Only subclasses will be ever be thrown. You
 * can name this class in a try/catch clause to catch all checked XCC
 * exceptions.
 *
 * @see 
 * Class XccException
 */
public abstract class XccException extends Exception {

    protected XccException(String message) {
        throw new UnsupportedOperationException();
    }

    protected XccException(String message, Throwable cause) {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy