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

com.zandero.rest.exception.WebApplicationExceptionHandler Maven / Gradle / Ivy

The newest version!
package com.zandero.rest.exception;

import io.vertx.core.http.*;

import javax.ws.rs.WebApplicationException;

/**
 *
 */
public class WebApplicationExceptionHandler implements ExceptionHandler {

    @Override
    public void write(WebApplicationException result, HttpServerRequest request, HttpServerResponse response) {

        response.setStatusCode(result.getResponse().getStatus());
        response.end(result.getMessage());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy