Fix base type of RecognitionException

This commit is contained in:
Sam Harwell 2013-02-16 15:17:55 -06:00
parent 73b121bc3b
commit 090c9c2bda
1 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,8 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
using Antlr4.Runtime;
using Antlr4.Runtime.Misc;
using Sharpen;
@ -42,7 +44,7 @@ namespace Antlr4.Runtime
/// and what kind of problem occurred.
/// </remarks>
[System.Serializable]
public class RecognitionException : RuntimeException
public class RecognitionException : Exception
{
private const long serialVersionUID = -3861826954750022374L;