package com.hearthsim.exception; public class HSException extends Exception { /** * */ private static final long serialVersionUID = 1L; public HSException() { super(); } public HSException(String message) { super(message); } }