类 JndiLookupFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.core.NestedRuntimeException
cn.taketoday.jndi.JndiLookupFailureException
- 所有已实现的接口:
Serializable
public class JndiLookupFailureException
extends cn.taketoday.core.NestedRuntimeException
RuntimeException to be thrown in case of JNDI lookup failures,
in particular from code that does not declare JNDI's checked
NamingException: for example, from
JndiObjectTargetSource.- 从以下版本开始:
- 4.0
- 作者:
- Juergen Hoeller
- 另请参阅:
-
构造器概要
构造器构造器说明JndiLookupFailureException(String msg, NamingException cause) Construct a new JndiLookupFailureException, wrapping the given JNDI NamingException. -
方法概要
从类继承的方法 cn.taketoday.core.NestedRuntimeException
contains, getMostSpecificCause, getNestedMessage, getRootCause
-
构造器详细资料
-
JndiLookupFailureException
Construct a new JndiLookupFailureException, wrapping the given JNDI NamingException.- 参数:
msg- the detail messagecause- the NamingException root cause
-