merge from 2_4_Release branch
[jalview.git] / src / org / jibble / epsgraphics / EpsException.java
1 /*
2  Copyright Paul James Mutton, 2001-2004, http://www.jibble.org/
3
4  This file is part of EpsGraphics2D.
5
6  This software is dual-licensed, allowing you to choose between the GNU
7  General Public License (GPL) and the www.jibble.org Commercial License.
8  Since the GPL may be too restrictive for use in a proprietary application,
9  a commercial license is also provided. Full license information can be
10  found at http://www.jibble.org/licenses/
11
12  $Author$
13  $Id$
14
15  */
16
17 package org.jibble.epsgraphics;
18
19 public class EpsException extends RuntimeException
20 {
21
22   public EpsException(String message)
23   {
24     super(message);
25   }
26
27 }