langtools/test/tools/javadoc/sampleapi/lib/sampleapi/SampleApi.java
changeset 37641 6949903ba85a
parent 33919 e9fccc09cfc6
--- a/langtools/test/tools/javadoc/sampleapi/lib/sampleapi/SampleApi.java	Wed Apr 20 08:35:44 2016 -0700
+++ b/langtools/test/tools/javadoc/sampleapi/lib/sampleapi/SampleApi.java	Wed Apr 20 17:17:56 2016 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -53,5 +53,8 @@
         public Fault(String msg) {
             super(msg);
         }
+        public Fault(String msg, Throwable th) {
+            super(msg, th);
+        }
     }
 }