// ************************************************************************ // $Id: ArrivalTimeQueueOverflowException.java 570 2005-07-12 02:17:09Z 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; /** * Thrown by {@link AsyncEvent#fire()} if its queue is already full * and the event's {@link BoundAsyncEventHandler} has an associated * {@link SporadicParameters} with * arrivalTimeQueueOverflowExcept behavior. * * @author Morgan Deters * @version 1.0 * @since 0.3.8 */ public class ArrivalTimeQueueOverflowException extends Exception { /** * A constructor for ArrivalTimeQueueOverflowException. */ public ArrivalTimeQueueOverflowException() {} /** * A constructor for ArrivalTimeQueueOverflowException that takes a * description. * * @param description textual description of the exception. */ public ArrivalTimeQueueOverflowException(String description) { super(description); } }