com.marklogic.xcc.exceptions.XccConfigException 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;
/**
* This exception indicates a configuration problem.
*
* @see
* Class XccConfigException
*/
public class XccConfigException extends XccException {
public XccConfigException(String message) {
super(message);
throw new UnsupportedOperationException();
}
public XccConfigException(String message, Throwable cause) {
super(message, cause);
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy