com.deltaxml.core.DXPConfigurationException 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.deltaxml.core;
/**
* Indicates an error condition in the {@link DXPConfiguration}.
*
*
* This class is the super-class of most of the checked exceptions
* thrown by the {@link DXPConfiguration} methods. As such it could be used for
* simplified, coarse-grain catch or throws clauses.
*
* @see
* Class DXPConfigurationException
*/
public class DXPConfigurationException extends DeltaXMLException {
public DXPConfigurationException(String message) {
super(message);
throw new UnsupportedOperationException();
}
public DXPConfigurationException(Throwable t) {
super(t);
throw new UnsupportedOperationException();
}
public DXPConfigurationException(String message, Throwable t) {
super(message, t);
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy