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

org.jboss.resteasy.plugins.providers.jaxb.JAXBMarshalException Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.plugins.providers.jaxb;

import jakarta.ws.rs.core.Response;

import org.jboss.resteasy.spi.WriterException;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class JAXBMarshalException extends WriterException {
    public JAXBMarshalException(final String s) {
        super(s);
    }

    public JAXBMarshalException(final String s, final Response response) {
        super(s, response);
    }

    public JAXBMarshalException(final String s, final Throwable throwable, final Response response) {
        super(s, throwable, response);
    }

    public JAXBMarshalException(final String s, final Throwable throwable) {
        super(s, throwable);
    }

    public JAXBMarshalException(final Throwable throwable) {
        super(throwable);
    }

    public JAXBMarshalException(final Throwable throwable, final Response response) {
        super(throwable, response);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy