7055295: (reflect) add conventional constructor to GenericSignatureFormatError
authordarcy
Mon, 20 Jun 2011 17:20:35 -0700
changeset 10058 356295f8ee47
parent 10057 03ae05289550
child 10059 e6cd26a8e390
7055295: (reflect) add conventional constructor to GenericSignatureFormatError Reviewed-by: lancea, mduigou
jdk/src/share/classes/java/lang/reflect/GenericSignatureFormatError.java
--- a/jdk/src/share/classes/java/lang/reflect/GenericSignatureFormatError.java	Mon Jun 20 19:17:47 2011 +0800
+++ b/jdk/src/share/classes/java/lang/reflect/GenericSignatureFormatError.java	Mon Jun 20 17:20:35 2011 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2011, 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
@@ -35,4 +35,22 @@
  */
 public class GenericSignatureFormatError extends ClassFormatError {
     private static final long serialVersionUID = 6709919147137911034L;
+
+    /**
+     * Constructs a new {@code GenericSignatureFormatError}.
+     *
+     */
+    public GenericSignatureFormatError() {
+        super();
+    }
+
+    /**
+     * Constructs a new {@code GenericSignatureFormatError} with the
+     * specified message.
+     *
+     * @param message the detail message, may be {@code null}
+     */
+    public GenericSignatureFormatError(String message) {
+        super(message);
+    }
 }