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