001    package javax.realtime;
002    
003    /** The exception is thrown when minimum interarrival time is violated. */
004    public class MITViolationException extends Exception {
005    
006        /** A constructor for <code>MITViolationException</code>. */
007        public MITViolationException() {
008            super();
009        }
010    
011        /** A descriptive constructor for <code>MITViolationException</code>.
012         *
013         *  @param s Description of the error.
014         */
015        public MITViolationException(String s) {
016            super(s);
017        }
018    }