source: branches/ralph/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/pal/tree/TreeParseException.java @ 1573

Last change on this file since 1573 was 1573, checked in by rkrimmel, 10 years ago

Now really adding PAL Library

File size: 532 bytes
Line 
1// TreeParseException.java
2//
3// (c) 1999-2001 PAL Development Core Team
4//
5// This package may be distributed under the
6// terms of the Lesser GNU General Public License (LGPL)
7
8
9package de.ugoe.cs.autoquest.tasktrees.alignment.pal.tree;
10
11
12/**
13 * exception thrown by ReadTree
14 *
15 * @author Korbinian Strimmer
16 */
17public class TreeParseException extends Exception
18{
19       
20        private static final long serialVersionUID = -6890313232581908150L;
21
22        public TreeParseException() {}
23
24        public TreeParseException(String msg)
25        {
26                super(msg);
27        }
28}
Note: See TracBrowser for help on using the repository browser.