key0-96/
key0-96/doc/key/
key0-96/doc/key/credits/
key0-96/doc/key/developers/
key0-96/doc/key/developers/resources/
key0-96/setup/caves/
key0-96/setup/help/
key0-96/setup/ruins/
key0-96/src/
key0-96/src/commands/
key0-96/src/events/
key0-96/src/hack/
key0-96/src/sql/
key0-96/src/swing/
key0-96/src/talker/forest/
key0-96/src/talker/objects/
key0-96/src/terminals/
package key;


/**
  *  This exception is used to specify that there is a
  *  defined limitation in the code that has been reached
  *  with this statement.  It could be because I haven't
  *  got around to coding that bit yet, or just because
  *  its too damn hard.
  *  <p>
  *  Don't expect to run into these often, I'm constructing
  *  this exception for its use referenceProperty - where
  *  a relative reference to an atom can't pass through a
  *  transit atom.
 */
public class LimitationException
extends RuntimeException
implements UserOutputException
{
	public LimitationException( String msg )
	{
		super( msg );
	}
	
	public void send( InteractiveConnection ic )
	{
		ic.sendFailure( getMessage() );
	}
}