001 package javax.realtime; 002 003 /** Thrown if construction of any of the wait-free queues is 004 * attempted with the ends of the queues in incompatible memory areas. 005 */ 006 public class MemoryScopeException extends Exception { 007 008 /** A constructor for <code>MemoryScopeException</code>. */ 009 public MemoryScopeException() { 010 super(); 011 } 012 013 /** A descriptive constructor for <code>MemoryScopeException</code>. 014 * 015 * @param s A description of the exception. 016 */ 017 public MemoryScopeException(String s) { 018 super(s); 019 } 020 }