diff options
Diffstat (limited to 'tests/bugs1923/gh326/pkg/TargetException.java')
-rw-r--r-- | tests/bugs1923/gh326/pkg/TargetException.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bugs1923/gh326/pkg/TargetException.java b/tests/bugs1923/gh326/pkg/TargetException.java new file mode 100644 index 000000000..aa3f5c868 --- /dev/null +++ b/tests/bugs1923/gh326/pkg/TargetException.java @@ -0,0 +1,11 @@ +package pkg; + +public class TargetException extends Exception { + + private static final long serialVersionUID = -1282142579066274623L; + + public TargetException(String message, Throwable cause) { + super(message, cause); + } + +} |