jdk/src/java.base/share/classes/java/lang/module/InvalidModuleDescriptorException.java
changeset 43712 5dfd0950317c
parent 36511 9d0388c6b336
equal deleted inserted replaced
43619:dc9102c475f3 43712:5dfd0950317c
    29  * Thrown when reading a module descriptor and the module descriptor is found
    29  * Thrown when reading a module descriptor and the module descriptor is found
    30  * to be malformed or otherwise cannot be interpreted as a module descriptor.
    30  * to be malformed or otherwise cannot be interpreted as a module descriptor.
    31  *
    31  *
    32  * @see ModuleDescriptor#read
    32  * @see ModuleDescriptor#read
    33  * @since 9
    33  * @since 9
       
    34  * @spec JPMS
    34  */
    35  */
    35 public class InvalidModuleDescriptorException extends RuntimeException {
    36 public class InvalidModuleDescriptorException extends RuntimeException {
    36     private static final long serialVersionUID = 4863390386809347380L;
    37     private static final long serialVersionUID = 4863390386809347380L;
    37 
    38 
    38     /**
    39     /**