Module java.base
Package java.lang

Class LayerInstantiationException

所有已实现的接口:
Serializable

public class LayerInstantiationException extends RuntimeException
在创建一个模块层失败时抛出。
自 JDK 版本:
9
参见:
  • Constructor Details

    • LayerInstantiationException

      public LayerInstantiationException()
      构造一个没有详细消息的LayerInstantiationException
    • LayerInstantiationException

      public LayerInstantiationException(String msg)
      构造一个带有给定详细消息的LayerInstantiationException
      参数:
      msg - 详细消息;可以为null
    • LayerInstantiationException

      public LayerInstantiationException(Throwable cause)
      构造一个带有给定原因的LayerInstantiationException
      参数:
      cause - 原因;可以为null
    • LayerInstantiationException

      public LayerInstantiationException(String msg, Throwable cause)
      构造一个带有给定详细消息和原因的LayerInstantiationException
      参数:
      msg - 详细消息;可以为null
      cause - 原因;可以为null