- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.module.ResolutionException
-
- All Implemented Interfaces:
-
Serializable
public class ResolutionException extends RuntimeException
在解析一组模块或解析一组具有服务绑定的模块时抛出失败。- 从以下版本开始:
- 9
- 另请参见:
-
Configuration
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 ResolutionException()
构造一个ResolutionException
,没有详细信息。ResolutionException(String msg)
构造一个ResolutionException
与给定的详细信息。ResolutionException(String msg, Throwable cause)
构造一个ResolutionException
与给定的详细信息和原因。ResolutionException(Throwable cause)
使用给定的原因构造此异常的实例。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
ResolutionException
public ResolutionException()
构造一个ResolutionException
,没有详细信息。
-
ResolutionException
public ResolutionException(String msg)
构造具有给定详细信息的ResolutionException
。- 参数
-
msg
- 详细信息; 可以是null
-
ResolutionException
public ResolutionException(Throwable cause)
使用给定的原因构造此异常的实例。- 参数
-
cause
- 原因; 可以是null
-
-