KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > rmi > server > ShutdownException


1 package org.sapia.ubik.rmi.server;
2
3
4 /**
5  * Thrown by the Ubik RMI runtime when operations are requested and it
6  * is shutdown.
7  *
8  * @author Yanick Duchesne
9  * 8-Sep-2003
10  */

11 public class ShutdownException extends RuntimeException JavaDoc {
12   /**
13    * Constructor for ShutdownException.
14    */

15   public ShutdownException() {
16     super();
17   }
18
19   public ShutdownException(String JavaDoc msg) {
20     super(msg);
21   }
22 }
23
Popular Tags