com.marklogic.xcc.exceptions.XccException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlcalabash-extension-stubs Show documentation
Show all versions of xmlcalabash-extension-stubs Show documentation
This artifact defines API stubs for compiling extension classes.
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