001    package javax.realtime;
002    
003    /** If an arrival time occurs and should be queued but the queue already holds
004     *  a number of times equal to the initial queue length defined by this then
005     *  the <code>fire()</code> method shall throw an
006     *  <code>ArrivalTimeQueueOverflowException</code>. If the arrival time is a
007     *  result of a happening to which the instance of <code>AsyncEventHandler</code>
008     *  is bound then the arrival time is ignored.
009     */
010    public class ArrivalTimeQueueOverflowException extends Exception {
011    
012        /** A constructor for <code>ScopedCycleException</code>. */
013        public ArrivalTimeQueueOverflowException() {
014            super();
015        }
016    
017        /** A descriptive constructor for <code>ScopedCycleException</code>.
018         *
019         *  @param s A description of the exception.
020         */
021        public ArrivalTimeQueueOverflowException(String s) {
022            super(s);
023        }
024    }