summaryrefslogtreecommitdiff
path: root/tags/host/0.8.1/src/org/reprap/ReprapException.java
blob: 8c0e6c4e573a4f497ba5f1fc471e8f4dbcdab619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.reprap;

public class ReprapException extends Exception {
	static final long serialVersionUID = 0;

	public ReprapException() {
		super();
	}

	public ReprapException(String arg0) {
		super(arg0);
	}

	public ReprapException(Throwable arg0) {
		super(arg0);
	}

}