org.apache.axiom.om.OMException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cxf-axiom-api-stub Show documentation
Show all versions of quarkus-cxf-axiom-api-stub Show documentation
Some dummy stubs of classes from Apache Axion API to make GraalVM happy. Note that CXF excludes those so they are not required for CXF to work properly
package org.apache.axiom.om;
public class OMException extends RuntimeException {
/** */
private static final long serialVersionUID = 1L;
public OMException() {
}
public OMException(String message) {
super(message);
}
public OMException(String message, Throwable cause) {
super(message, cause);
}
public OMException(Throwable cause) {
super(cause);
}
}