1 package org.sapia.ubik.rmi.server;2 3 4 /**5 * Thrown by the Ubik RMI runtime when operations are requested and it6 * is shutdown.7 *8 * @author Yanick Duchesne9 * 8-Sep-200310 */11 public class ShutdownException extends RuntimeException {12 /**13 * Constructor for ShutdownException.14 */15 public ShutdownException() {16 super();17 }18 19 public ShutdownException(String msg) {20 super(msg);21 }22 }23