com.clouway.friendlyserve.HttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fserve Show documentation
Show all versions of fserve Show documentation
Friendly Serving HTTP Library.
package com.clouway.friendlyserve;
/**
* @author Miroslav Genov ([email protected])
*/
public class HttpException extends RuntimeException {
private final int code;
public HttpException(int code) {
this.code = code;
}
public int code() {
return code;
}
}