001 package biz.hammurapi.remoting.http; 002 003 public class HttpRemoteException extends RuntimeException { 004 005 public HttpRemoteException() { 006 007 } 008 009 public HttpRemoteException(String message) { 010 super(message); 011 } 012 013 public HttpRemoteException(Throwable cause) { 014 super(cause); 015 } 016 017 public HttpRemoteException(String message, Throwable cause) { 018 super(message, cause); 019 } 020 021 }