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

import msql.*;

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

public class InvalidTransactionException extends MsqlException {

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

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

}



Last Updated