- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- java.lang.RuntimeException
 - 
- java.lang.module.InvalidModuleDescriptorException
 
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class InvalidModuleDescriptorException extends RuntimeException
Thrown when reading a module descriptor and the module descriptor is found to be malformed or otherwise cannot be interpreted as a module descriptor. 
- 
- 
Constructor Summary
Constructors Constructor Description InvalidModuleDescriptorException()Constructs anInvalidModuleDescriptorExceptionwith no detail message.InvalidModuleDescriptorException(String msg)Constructs anInvalidModuleDescriptorExceptionwith the specified detail message. 
- 
Method Summary
- 
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
InvalidModuleDescriptorException
public InvalidModuleDescriptorException()
Constructs anInvalidModuleDescriptorExceptionwith no detail message. 
- 
InvalidModuleDescriptorException
public InvalidModuleDescriptorException(String msg)
Constructs anInvalidModuleDescriptorExceptionwith the specified detail message.- Parameters:
 msg- The detail message; can benull
 
 - 
 
 -