001    package org.shiftone.jrat.http;
002    
003    /**
004     * @author jeff@shiftone.org (Jeff Drost)
005     */
006    public class HttpException extends RuntimeException {
007    
008        private final Status status;
009    
010        public HttpException(Status status) {
011            this.status = status;
012        }
013    
014        public Status getStatus() {
015            return status;
016        }
017    
018    
019    }