org.jboss.resteasy.plugins.providers.jaxb.JAXBMarshalException Maven / Gradle / Ivy
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);
}
}