package COM.xinit.demon.co.uk.3tier.database;

import msql.*;

/**
  Class RecordNotFoundException genreated when a record is not found
  @author John
  @version 1.0.0
 */

public class RecordNotFoundException extends MsqlException {

/**
  Constructs a new RecordNotFoundException with no detail message
 */
    public RecordNotFoundException() {
	super();
    }

/**
  Constructs a new RecordNotFoundException with specified error message
   @param the message to use
 */
    public RecordNotFoundException(String s) {
	super(s);
    }

}



Last Updated