com.sun.corba.se.spi.orbutil.threadpool.NoSuchWorkQueueException
NoSuchWorkQueueException is described in the javadoc comments as:
No description available.
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 'com.sun.corba.se.spi.orbutil.threadpool.NoSuchWorkQueueException: ' is thrown within the method:
com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl.getWorkQueue(int)
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.
com.sun.corba.se.impl.orbutil.threadpool.ThreadPoolImpl.getWorkQueue(int)
public WorkQueue getWorkQueue(int queueId) throws NoSuchWorkQueueException { if (queueId != 0) throw new NoSuchWorkQueueException(); return workQueue; }
Source: "Java SE Downloads: Java SE 6 JDK Source Code", at: http://www.oracle.com/technetwork/java/javase/downloads/index.html
Comments
Post a Comment