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

org.nohope.jaxb2.plugin.metadata.CallException Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package org.nohope.jaxb2.plugin.metadata;

/**
 * @author Ketoth Xupack
 * @since 2013-10-30 17:31
 */
public class CallException extends Exception {
    private static final long serialVersionUID = 1L;
    private final transient IDescriptor context;

    public CallException(final IDescriptor context, final String message, final Throwable e) {
        super(message, e);
        this.context = context;
    }

    public IDescriptor getContext() {
        return context;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy