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

org.wildfly.swarm.jaxrs.CustomExceptionResource Maven / Gradle / Ivy

package org.wildfly.swarm.jaxrs;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;

/**
 * @author Bob McWhirter
 */
@Path( "/custom")
public class CustomExceptionResource {

    @GET
    @Path( "/throw" )
    public Response get() throws CustomException {
        throw new CustomException( "Custom exception" );
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy