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

com.deltaxml.core.DeltaXMLException Maven / Gradle / Ivy

The newest version!
package com.deltaxml.core;

/**
 * This class specifies an exceptional condition.
 *
 * @see 
 * Class DeltaXMLException
 */
public class DeltaXMLException extends Exception {

    public DeltaXMLException(String message) {
        throw new UnsupportedOperationException();
    }

    public DeltaXMLException(String message, Throwable e) {
        throw new UnsupportedOperationException();
    }

    public DeltaXMLException(Throwable e) {
        throw new UnsupportedOperationException();
    }

    public Throwable getThrowable() {
        throw new UnsupportedOperationException();
    }

    @Override
    public Throwable getCause() {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy