001 package javax.realtime; 002 003 /** Thrown if an attempt is made to exceed a system resource limit, 004 * such as the maximum number of locks. 005 */ 006 public class ResourceLimitError extends Error { 007 008 /** A constructor for <code>ResourceLimitError</code>. */ 009 public ResourceLimitError() { 010 super(); 011 } 012 013 /** A descriptive constructor for <code>ResourceLimitError</code>. 014 * 015 * @param s The description of the exeption. 016 */ 017 public ResourceLimitError(String s) { 018 super(s); 019 } 020 }