
// Used to throw an exception when a user attempts to
// index into an instance of Vector past the boundaries.
public class BoundaryViolationException
             extends RuntimeException {
   public BoundaryViolationException()
   {
      super( "Rank out of bounds" );
   }

   public BoundaryViolationException( String message )
   {
      super( message );
   }
}

