GridLab
Grid Application Toolkit

A simple API for Grid Applications
GAT

Menu



Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members  

RemoteException.java

Go to the documentation of this file.
00001 /*
00002  * Created on Apr 19, 2004
00003  *
00004  */
00005 package org.gridlab.gat.net;
00006 
00007 
00008 /**
00009  * @author rob
00010  *
00011  */
00012 public class RemoteException extends java.io.IOException {
00013 
00014     /**
00015      * 
00016      */
00017     public RemoteException() {
00018         super();
00019     }
00020 
00021     /**
00022      * @param arg0
00023      */
00024     public RemoteException(String arg0) {
00025         super(arg0);
00026     }
00027 }