
com.deltaxml.core.ParameterValueConflict 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;
/**
* Thrown when an a parameter or feature has incorrect DXP syntax.
*
*
* The DTD used to specify the DXP format cannot state that two attributes are
* mutually exclusive. This exception is thrown when errors in the DXP
* configuration are detected. In particular, when neither the
* {@code literalValue} and {@code parameterRef} attributes are present, or when
* they are both present. Normally exactly one of these attributes should be
* used.
*
*
* This exception reports the parameter/feature name and the context in which it
* was being incorrectly used.
*
* @see
* Class ParameterValueConflict
*/
public class ParameterValueConflict extends DXPConfigurationException {
public ParameterValueConflict(String message, String parameterName, String parameterContext) {
super(message);
throw new UnsupportedOperationException();
}
public ParameterValueConflict(String message, Throwable t, String parameterName, String parameterContext) {
super(message, t);
throw new UnsupportedOperationException();
}
public String getUnkownParameterName() {
throw new UnsupportedOperationException();
}
public String getUnkownParameterContext() {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy