- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.LayerInstantiationException
-
- 实现的所有接口
-
Serializable
public class LayerInstantiationException extends RuntimeException
创建module layer失败时抛出。- 从以下版本开始:
- 9
- 另请参见:
-
ModuleLayer
, Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 LayerInstantiationException()
构造一个没有详细消息的LayerInstantiationException
。LayerInstantiationException(String msg)
使用给定的详细消息构造LayerInstantiationException
。LayerInstantiationException(String msg, Throwable cause)
使用给定的详细消息和原因构造LayerInstantiationException
。LayerInstantiationException(Throwable cause)
构造具有给定原因的LayerInstantiationException
。
-
方法摘要
-
-
-
构造方法详细信息
-
LayerInstantiationException
public LayerInstantiationException()
构造一个LayerInstantiationException
,没有详细消息。
-
LayerInstantiationException
public LayerInstantiationException(String msg)
使用给定的详细消息构造LayerInstantiationException
。- 参数
-
msg
- 详细信息; 可以是null
-
LayerInstantiationException
public LayerInstantiationException(Throwable cause)
构造具有给定原因的LayerInstantiationException
。- 参数
-
cause
- 原因; 可以是null
-
-