Make ComponentPresetDao and interface with implementation in ComponentPresetDatabase...
[debian/openrocket] / core / src / net / sf / openrocket / preset / InvalidComponentPresetException.java
1 package net.sf.openrocket.preset;
2
3 public class InvalidComponentPresetException extends Exception {
4
5         public InvalidComponentPresetException() {
6                 super();
7                 // TODO Auto-generated constructor stub
8         }
9
10         public InvalidComponentPresetException(String message, Throwable cause) {
11                 super(message, cause);
12                 // TODO Auto-generated constructor stub
13         }
14
15         public InvalidComponentPresetException(String message) {
16                 super(message);
17                 // TODO Auto-generated constructor stub
18         }
19
20         public InvalidComponentPresetException(Throwable cause) {
21                 super(cause);
22                 // TODO Auto-generated constructor stub
23         }
24
25 }