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

org.jboss.resteasy.reactive.server.multipart.MultipartPartReadingException Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package org.jboss.resteasy.reactive.server.multipart;

import jakarta.ws.rs.BadRequestException;

/**
 * Exception thrown when some part of the multipart input cannot be read using the appropriate
 * {@link jakarta.ws.rs.ext.MessageBodyReader}.
 * This exception is useful to application because it can be by an {@link jakarta.ws.rs.ext.ExceptionMapper} in order to
 * customize
 * the input error handling.
 */
public class MultipartPartReadingException extends BadRequestException {

    public MultipartPartReadingException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy