001    package javax.realtime;
002    
003    /** The specified memory area is not above the current
004     *  allocation context on the current thread scope stack.
005     */
006    public class InaccessibleAreaException extends Exception {
007    
008        /** A constructor for <code>InaccessibleAreaException</code>. */
009        public InaccessibleAreaException() {
010            super();
011        }
012    
013        /** A descriptive constructor for <codeInaccessibleAreaException</code>.
014         *
015         *  @param s Description of the error.
016         */
017        public InaccessibleAreaException(String s) {
018            super(s);
019        }
020    }