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

org.deephacks.westty.tests.HttpException Maven / Gradle / Ivy

The newest version!
package org.deephacks.westty.tests;

import javax.ws.rs.core.Response.Status;

public class HttpException extends RuntimeException {
    private Status status;

    public HttpException(Status status, String msg){
        super(msg);
        this.status = status;
    }

    public Status getCode(){
        return status;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy