package edu.neu.ccs.demeterf.http.server;

public class ResponseException extends RuntimeException {
    public ResponseException(String s){ super(s); }
    public ResponseException(Exception e){ super(e); } 
}