repository.grepcode.com$java$root@jdk$openjdk@6-b14
repository.grepcode.com$java$root@jdk$openjdk@6-b14@java$rmi$RemoteException.java
file
oh
o
[]
just look at program below..
import java.io.*;
import java.rmi.*;
class class1
{
public void m1() throws RemoteException
{
System.out.println("m1 in class1");
}
}
class class2 extends class1
{
public void m1() throws IOException
{
System.out.println("m1 in class2");
}
}
class ExceptionTest2
{
public static void main(String args[])
{
class1 obj = new class1();
try{
...
I'm using the following bit of code to notify remote (RMI) event listeners of a change.
// notify remote listeners of this change
ThreadPool.execute(new Runnable() { @Override public void run() {
List<Integer> removal = new ArrayList<Integer>();
listeners.getReadLock().lock();
try {
for (Entry<Integer, Remote...
I have searched a lot ,but i couldn't find the fine answer for it.I use try_catch block for this exception(if this exception is thrown one frame will be shown to the user that I will tell him/her a message) but it still show the exception in the console.please help me.Thanks.
submit() method which will throw this exception:
private void submit() throws ConnectException {
String id = id...
I'm working a web project that use:
- Java
- Jetty
- Fitnesse tool
- etc..
I have a difficulty to simulate/generate a SocketTimeoutException, more info below:
The use-case-simplified:
I wrote a API that make calls to a host(WebServer).
In the source-code if I receive a RemoteException and is a SocketTimeoutException, I need to retry in some other host.
All is working nice!
How we test:...
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 detail field is now known as the cause, and
may be accessed via the java.lang.Throwable.getCause() method, as well as
the aforementioned "legacy field."
Invoking the method java.lang.Throwable.initCause(java.lang.Throwable) on an
instance of RemoteException always throws java.lang.IllegalStateException.
- Author(s):
- Ann Wollrath
- Since:
- JDK1.1
The cause of the remote exception.
This field predates the general-purpose exception chaining facility.
The java.lang.Throwable.getCause() method is now the preferred means of
obtaining this information.
Constructs a
RemoteException.
Constructs a
RemoteException with the specified
detail message.
- Parameters:
s the detail message
Constructs a
RemoteException with the specified detail
message and cause. This constructor sets the
detail
field to the specified
Throwable.
- Parameters:
s the detail messagecause the cause
Returns the detail message, including the message from the cause, if
any, of this exception.
- Returns:
- the detail message
return super.getMessage() + "; nested exception is: \n\t" +
Returns the cause of this exception. This method returns the value
of the
detail field.
- Returns:
- the cause, which may be null.
- Since:
- 1.4