Skip to main content

Posts

Showing posts from March, 2015

MirroredTypesException

com.sun.mirror.type.MirroredTypesException MirroredTypesException is described in the javadoc comments as: Thrown when an application attempts to access a sequence of { link: Class} objects each corresponding to a { link: TypeMirror}. see: MirroredTypeException see: Declaration#getAnnotation(Class) Where is this exception thrown? Following, is a list of exception messages cross-referenced to the source code responsible for throwing them. Click on the method link to view the code and see how the exception is thrown. MirroredTypesException is not thrown within any available source code. How is this exception thrown? The following sub-sections identify where this exception is thrown, and how (or why) the code is throwing the exception. Any source code quoted in this section is subject to the Java Research License unless stated otherwise. MirroredTypesException is not thrown within the available source code.
com.sun.jmx.snmp.SnmpUnknownMsgProcModelException SnmpUnknownMsgProcModelException is described in the javadoc comments as: This exception is thrown when an SnmpMsgProcessingSubSystem doesn't know the passed ID. This API is a Sun Microsystems internal API and is subject to change without notice. since: 1.5 Where is this exception thrown? Following, is a list of exception messages cross-referenced to the source code responsible for throwing them. Click on the method link to view the code and see how the exception is thrown. SnmpUnknownMsgProcModelException is not thrown within any available source code. How is this exception thrown? The following sub-sections identify where this exception is thrown, and how (or why) the code is throwing the exception. Any source code quoted in this section is subject to the Java Research License unless stated otherwise. SnmpUnknownMsgProcModelException is not thrown within the available source code.

RemoteException

java.rmi.RemoteException RemoteException is described in the javadoc comments as: A RemoteException is the common superclass for a number of communication-related exceptions that may occur during the execution of a remote method call. Each method of a remote interface, an interface that extends java.rmi.Remote , must list RemoteException in its throws clause. As of release 1.4, this exception has been retrofitted to conform to the general purpose exception-chaining mechanism. The 'wrapped remote exception' that may be provided at construction time and accessed via the public { link: #detail} field is now known as the cause , and may be accessed via the { link: Throwable#getCause()} method, as well as the aforementioned 'legacy field.' Invoking the method { link: Throwable#initCause(Throwable)} on an instance of RemoteException always throws {@link IllegalStateException}. version: 1.24, 12/19/03 author: Ann Wollrath since: JDK1.1 Where is this exception thrown?

ActivationException

java.rmi.activation.ActivationException ActivationException is described in the javadoc comments as: General exception used by the activation interfaces. As of release 1.4, this exception has been retrofitted to conform to the general purpose exception-chaining mechanism. The 'detail exception' that may be provided at construction time and accessed via the public { link: #detail} field is now known as the cause , and may be accessed via the { link: Throwable#getCause()} method, as well as the aforementioned 'legacy field.' Invoking the method { link: Throwable#initCause(Throwable)} on an instance of ActivationException always throws {@link IllegalStateException}. author: Ann Wollrath version: 1.24, 12/19/03 since: 1.2 Where is this exception thrown? Following, is a list of exception messages cross-referenced to the source code responsible for throwing them. Click on the method link to view the code and see how the exception is thrown. The message ' java.

ReadOnlyBufferException

java.nio.ReadOnlyBufferException ReadOnlyBufferException is described in the javadoc comments as: Unchecked exception thrown when a content-mutation method such as put or compact is invoked upon a read-only buffer. version: 1.14, 01/05/02 since: 1.4 Where is this exception thrown? Following, is a list of exception messages cross-referenced to the source code responsible for throwing them. Click on the method link to view the code and see how the exception is thrown. The message ' java.nio.ReadOnlyBufferException: ' is thrown within the method: java.nio.ByteBuffer.array() The message ' java.nio.ReadOnlyBufferException: ' is thrown within the method: java.nio.ByteBuffer.arrayOffset() The message ' java.nio.ReadOnlyBufferException: ' is thrown within the method: java.nio.ByteBufferAsCharBufferRB.compact() The message ' java.nio.ReadOnlyBufferException: ' is thrown within the method: java.nio.ByteBufferAsCharBufferRB.put(char) The messag