src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/URI.java
changeset 47443 711ef438b6ad
parent 47216 71c04702a3d5
child 48409 5ab69533994b
equal deleted inserted replaced
47442:560ee83bfce5 47443:711ef438b6ad
     1 /*
     1 /*
     2  * reserved comment block
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT REMOVE OR ALTER!
     3  * @LastModified: Oct 2017
     4  */
     4  */
     5 /*
     5 /*
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     6  * Licensed to the Apache Software Foundation (ASF) under one or more
     7  * contributor license agreements.  See the NOTICE file distributed with
     7  * contributor license agreements.  See the NOTICE file distributed with
     8  * this work for additional information regarding copyright ownership.
     8  * this work for additional information regarding copyright ownership.
    59  *
    59  *
    60  *
    60  *
    61  */
    61  */
    62 public class URI implements Serializable
    62 public class URI implements Serializable
    63 {
    63 {
    64     static final long serialVersionUID = 7096266377907081897L;
    64   private static final long serialVersionUID = 7096266377907081897L;
    65 
    65 
    66   /**
    66   /**
    67    * MalformedURIExceptions are thrown in the process of building a URI
    67    * MalformedURIExceptions are thrown in the process of building a URI
    68    * or setting fields on a URI when an operation would result in an
    68    * or setting fields on a URI when an operation would result in an
    69    * invalid URI specification.
    69    * invalid URI specification.
    70    *
    70    *
    71    */
    71    */
    72   public static class MalformedURIException extends IOException
    72   public static class MalformedURIException extends IOException
    73   {
    73   {
       
    74     private static final long serialVersionUID = -8498313684991136829L;
    74 
    75 
    75     /**
    76     /**
    76      * Constructs a <code>MalformedURIException</code> with no specified
    77      * Constructs a <code>MalformedURIException</code> with no specified
    77      * detail message.
    78      * detail message.
    78      */
    79      */