![JAR search and dependency download from the Maven repository](/logo.png)
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