001    // MemoryScopeError.java, created by wbeebee
002    // Copyright (C) 2001 Wes Beebee <wbeebee@mit.edu>
003    // Licensed under the terms of the GNU GPL; see COPYING for details.
004    package javax.realtime;
005    
006    /** <code>MemoryScopeError</code>
007     *
008     * @author Wes Beebee <<a href="mailto:wbeebee@mit.edu">wbeebee@mit.edu</a>>
009     */
010    
011    public class MemoryScopeError extends Error {
012    
013        /** Constructor, no description. */
014    
015        public MemoryScopeError() {
016            super();
017        }
018    
019        /** Constructor with description. */
020    
021        public MemoryScopeError(String description) {
022            super(description);
023        }
024    }