< prev index next >

src/java.base/share/classes/sun/reflect/annotation/TypeNotPresentExceptionProxy.java

Print this page




  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.reflect.annotation;
  27 import java.lang.annotation.*;
  28 
  29 /**
  30  * ExceptionProxy for TypeNotPresentException.
  31  *
  32  * @author  Josh Bloch
  33  * @since   1.5
  34  */
  35 public class TypeNotPresentExceptionProxy extends ExceptionProxy {

  36     private static final long serialVersionUID = 5565925172427947573L;
  37     final String typeName;
  38     final Throwable cause;
  39 
  40     public TypeNotPresentExceptionProxy(String typeName, Throwable cause) {
  41         this.typeName = typeName;
  42         this.cause = cause;
  43     }
  44 
  45     protected RuntimeException generateException() {
  46         return new TypeNotPresentException(typeName, cause);
  47     }
  48 
  49     public String typeName() {
  50         return typeName;
  51     }
  52 
  53     public Throwable getCause() {
  54         return cause;
  55     }


  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.reflect.annotation;
  27 import java.lang.annotation.*;
  28 
  29 /**
  30  * ExceptionProxy for TypeNotPresentException.
  31  *
  32  * @author  Josh Bloch
  33  * @since   1.5
  34  */
  35 public class TypeNotPresentExceptionProxy extends ExceptionProxy {
  36     @java.io.Serial
  37     private static final long serialVersionUID = 5565925172427947573L;
  38     final String typeName;
  39     final Throwable cause;
  40 
  41     public TypeNotPresentExceptionProxy(String typeName, Throwable cause) {
  42         this.typeName = typeName;
  43         this.cause = cause;
  44     }
  45 
  46     protected RuntimeException generateException() {
  47         return new TypeNotPresentException(typeName, cause);
  48     }
  49 
  50     public String typeName() {
  51         return typeName;
  52     }
  53 
  54     public Throwable getCause() {
  55         return cause;
  56     }
< prev index next >