001    // UnsupportedPhysicalMemoryException.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    /**
007     * @author Wes Beebee <<a href="mailto:wbeebee@mit.edu">wbeebee@mit.edu</a>>
008     */
009    
010    /** Thrown when the underlying hardware does not support the type of physical
011     *  memory given to the physical memory <code>create()</code> method.
012     */
013    public class UnsupportedPhysicalMemoryException extends Exception {
014        
015        /** A constructor for <code>UnsupportedPhysicalMemoryException</code>. */
016        public UnsupportedPhysicalMemoryException() {
017            super();
018        }
019    
020        /** A descriptive constructor for <code>UnsupportedPhysicalMemoryException</code>.
021         *
022         *  @param s The description of the exception.
023         */
024        public UnsupportedPhysicalMemoryException(String s) {
025            super(s);
026        }
027    }