package hk.reality.stock.service.exception; public class ParseException extends RuntimeException { public ParseException() { // TODO Auto-generated constructor stub } public ParseException(String detailMessage) { super(detailMessage); // TODO Auto-generated constructor stub } public ParseException(Throwable throwable) { super(throwable); // TODO Auto-generated constructor stub } public ParseException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); // TODO Auto-generated constructor stub } }