< prev index next >

src/java.base/share/classes/jdk/internal/util/jar/InvalidJarIndexError.java

Print this page




  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 jdk.internal.util.jar;
  27 
  28 /**
  29  * Thrown if the URLClassLoader finds the INDEX.LIST file of
  30  * a jar file contains incorrect information.
  31  *
  32  * @since 9
  33  */
  34 
  35 public class InvalidJarIndexError extends Error {
  36 

  37     static final long serialVersionUID = 0L;
  38 
  39     /**
  40      * Constructs an {@code InvalidJarIndexError} with no detail message.
  41      */
  42     public InvalidJarIndexError() {
  43         super();
  44     }
  45 
  46     /**
  47      * Constructs an {@code InvalidJarIndexError} with the specified detail message.
  48      *
  49      * @param   s   the detail message.
  50      */
  51     public InvalidJarIndexError(String s) {
  52         super(s);
  53     }
  54 }


  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 jdk.internal.util.jar;
  27 
  28 /**
  29  * Thrown if the URLClassLoader finds the INDEX.LIST file of
  30  * a jar file contains incorrect information.
  31  *
  32  * @since 9
  33  */
  34 
  35 public class InvalidJarIndexError extends Error {
  36 
  37     @java.io.Serial
  38     static final long serialVersionUID = 0L;
  39 
  40     /**
  41      * Constructs an {@code InvalidJarIndexError} with no detail message.
  42      */
  43     public InvalidJarIndexError() {
  44         super();
  45     }
  46 
  47     /**
  48      * Constructs an {@code InvalidJarIndexError} with the specified detail message.
  49      *
  50      * @param   s   the detail message.
  51      */
  52     public InvalidJarIndexError(String s) {
  53         super(s);
  54     }
  55 }
< prev index next >