org.jboss.resteasy.plugins.providers.jaxb.JAXBUnmarshalException Maven / Gradle / Ivy
package org.jboss.resteasy.plugins.providers.jaxb;
import jakarta.ws.rs.core.Response;
import org.jboss.resteasy.spi.ReaderException;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
public class JAXBUnmarshalException extends ReaderException {
public JAXBUnmarshalException(final String s) {
super(s);
}
public JAXBUnmarshalException(final String s, final Response response) {
super(s, response);
}
public JAXBUnmarshalException(final String s, final Throwable throwable, final Response response) {
super(s, throwable, response);
}
public JAXBUnmarshalException(final String s, final Throwable throwable) {
super(s, throwable);
}
public JAXBUnmarshalException(final Throwable throwable) {
super(throwable);
}
public JAXBUnmarshalException(final Throwable throwable, final Response response) {
super(throwable, response);
}
}