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

org.jboss.resteasy.reactive.common.PreserveTargetException Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package org.jboss.resteasy.reactive.common;

/**
 * Marker exception that indicates to RESTEasy Reactive that the target should be preserved.
 * This is very useful for providing good contextual error messages
 */
public class PreserveTargetException extends RuntimeException {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy