Example usage for java.rmi RemoteException RemoteException

List of usage examples for java.rmi RemoteException RemoteException

Introduction

In this page you can find the example usage for java.rmi RemoteException RemoteException.

Prototype

public RemoteException(String s) 

Source Link

Document

Constructs a RemoteException with the specified detail message.

Usage

From source file:org.openspaces.pu.container.servicegrid.PUServiceBeanImpl.java

public String getPresentationName() throws RemoteException {
    if (puDetails == null) {
        throw new RemoteException("processing unit shutdown");
    }/*from w w w  .  j a  va  2s.com*/
    return this.puDetails.getPresentationName();
}