/** * Exception class utilized throughout the FrontEnd. Nothing special * going in here. */ public class FrontEndException extends RuntimeException { public FrontEndException(String msg) { super(msg); } }