001 package javax.realtime; 002 003 /** This exception is thrown when the <code>PhysicalMemoryManager</code> 004 * is given conflicting specifications for memory. The conflict 005 * can be between types in an array of memory type specifiers, 006 * or between the specifiers and a specified base address. 007 */ 008 public class MemoryTypeConflictException extends Exception { 009 010 /** A constructor for <code>MemoryTypeConflictException</code>. */ 011 public MemoryTypeConflictException() { 012 super(); 013 } 014 015 /** A descriptive constructor for <code>MemoryTypeConflictException</code>. 016 * 017 * @param s A description of the exception. 018 */ 019 public MemoryTypeConflictException(String s) { 020 super(s); 021 } 022 }