// ************************************************************************ // $Id: ShutdownExecutorException.java 561 2005-07-11 20:09:17Z mdeters $ // ************************************************************************ // // jRate // // Copyright (C) 2001-2005 by Angelo Corsaro. // // All Rights Reserved. // // Permission to use, copy, modify, and distribute this software and // its documentation for any purpose is hereby granted without fee, // provided that the above copyright notice appear in all copies and // that both that copyright notice and this permission notice appear // in supporting documentation. I don't make any representations // about the suitability of this software for any purpose. It is // provided "as is" without express or implied warranty. // // // ************************************************************************* // // ************************************************************************* package javax.realtime.util; /** * This exception is thrown by an {@link Executor} when its * execute() method is invoked after it has been shut * down. * * @author Angelo Corsaro * @version 1.0 */ public class ShutdownExecutorException extends Exception { public ShutdownExecutorException() { super(); } public ShutdownExecutorException(String msg) { super(msg); } }