]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/threedee/ThreeDException.java
45cfce09ae8301cbb3ef4908b2f3f77b1a75848e
[GpsPrune.git] / tim / prune / threedee / ThreeDException.java
1 package tim.prune.threedee;
2
3 /**
4  * Class to hold Exceptions thrown by 3d routines
5  */
6 public class ThreeDException extends Exception
7 {
8
9         /**
10          * Constructor
11          * @param message error text
12          */
13         public ThreeDException(String message)
14         {
15                 super(message);
16         }
17 }