summaryrefslogtreecommitdiff
path: root/java/test/Freeze/complex/ParseError.java
blob: bc7def0ef2f2826cc0a8d00fed4fbb395fc32915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// **********************************************************************
//
// Copyright (c) 2001
// Mutable Realms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

public class ParseError extends Exception
{
    public ParseError(String msg)
    {
	super(msg);
    }
}