- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- java.lang.LayerInstantiationException
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class LayerInstantiationException extends RuntimeException Thrown when creating a module layer fails.- Since:
- 9
- See Also:
- ModuleLayer, Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description LayerInstantiationException()Constructs aLayerInstantiationExceptionwith no detail message.LayerInstantiationException(String msg)Constructs aLayerInstantiationExceptionwith the given detail message.LayerInstantiationException(String msg, Throwable cause)Constructs aLayerInstantiationExceptionwith the given detail message and cause.LayerInstantiationException(Throwable cause)Constructs aLayerInstantiationExceptionwith the given cause.
 - 
Method Summary- 
Methods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
LayerInstantiationExceptionpublic LayerInstantiationException() Constructs aLayerInstantiationExceptionwith no detail message.
 - 
LayerInstantiationExceptionpublic LayerInstantiationException(String msg) Constructs aLayerInstantiationExceptionwith the given detail message.- Parameters:
- msg- The detail message; can be- null
 
 - 
LayerInstantiationExceptionpublic LayerInstantiationException(Throwable cause) Constructs aLayerInstantiationExceptionwith the given cause.- Parameters:
- cause- The cause; can be- null
 
 
- 
 
-