/** * Copyright 1998-2009 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and * redistribution of this file, and for a DISCLAIMER OF ALL * WARRANTIES. */ package edu.cmu.sphinx.jsgf; @SuppressWarnings("serial") public class JSGFGrammarException extends Exception { public JSGFGrammarException(String message) { super(message); } }