aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1923/gh326/pkg/TargetException.java
blob: aa3f5c868683bd0037e941bb200333bb4bbd2ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
package pkg;

public class TargetException extends Exception {

	private static final long serialVersionUID = -1282142579066274623L;

	public TargetException(String message, Throwable cause) {
		super(message, cause);
	}

}