All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.axiom.om.OMException Maven / Gradle / Ivy

Go to download

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

There is a newer version: 3.16.1
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy