home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / prosrc.bin / PositionOutOfRangeException.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  457 b   |  19 lines

  1. /*
  2.  * @(#PositionOutOfRangeException.java
  3.  *
  4.  * Copyright (c) 1997 Symantec Corporation. All Rights Reserved.
  5.  *
  6.  */
  7.  /**
  8.  * <P> This class is the exception thrown when an attempt is made
  9.  *     to move a Cursor to a position out of range.
  10.  */
  11.  
  12. package symantec.itools.db.beans.binding;
  13.  
  14. public class PositionOutOfRangeException extends Exception
  15. {
  16.     public PositionOutOfRangeException() {
  17.         super("Position out of range");
  18.     }
  19. }