create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / rocketcomponent / IllegalFinPointException.java
1 package net.sf.openrocket.rocketcomponent;
2
3 /**
4  * An exception signifying that an operation on the freeform fin set points was
5  * illegal (segments intersect, removing first or last point, etc).
6  * 
7  * @author Sampo Niskanen <sampo.niskanen@iki.fi>
8  */
9 public class IllegalFinPointException extends Exception {
10
11         public IllegalFinPointException() {
12
13         }
14
15         public IllegalFinPointException(String message) {
16                 super(message);
17         }
18
19         public IllegalFinPointException(Throwable cause) {
20                 super(cause);
21         }
22
23         public IllegalFinPointException(String message, Throwable cause) {
24                 super(message, cause);
25         }
26
27 }