|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException javax.management.remote.JMXServerErrorException
public class JMXServerErrorException
在处理远程 MBean 服务器中的调用的过程中抛出了 Error
时,远程 MBeanServer
方法调用导致抛出的异常。JMXServerErrorException
实例包含作为其 cause 而发生的初始 Error
。
ServerError
,
序列化表格构造方法摘要 | |
---|---|
JMXServerErrorException(String s,
Error err)
构造带指定详细消息和嵌套错误的 JMXServerErrorException 。 |
方法摘要 | |
---|---|
Throwable |
getCause()
返回此 throwable 的 cause;如果 cause 不存在或未知,则返回 null 。 |
从类 java.lang.Throwable 继承的方法 |
---|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
public JMXServerErrorException(String s, Error err)
JMXServerErrorException
。
s
- 详细消息。err
- 嵌套错误。此参数为 null 时也可以构造该类的实例,但标准的连接器不这样做。方法详细信息 |
---|
public Throwable getCause()
Throwable
复制的描述null
。(该 Cause 是导致抛出此 throwable 的throwable。)
此实现返回由一个需要 Throwable 的构造方法提供的 cause,或者在创建之后通过 Throwable.initCause(Throwable)
方法进行设置的 cause。虽然通常不需要重写此方法,但子类可以重写它,以返回一个通过某些其他方式设置的 cause。这适用于在异常链(异常嵌套)机制被加入到 Throwable 之前存在“遗留 Throwable 链机制”的情况。注意,不必 重写任何 PrintStackTrace 方法,所有方法都调用 getCause 方法来确定 throwable 的 cause。
Throwable
中的 getCause
null
。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。