package COM.xinit.demon.co.uk.3tier.database;
import msql.*;
/**
Class DuplicateIDException generated when an attempt is made to duplicate
an ssn number
@author Neil
@version 1.0.0
*/
public class DuplicateIDException extends MsqlException {
/**
Constructs a new DuplicateIDException with no detail message
*/
public DuplicateIDException() {
super();
}
/**
Constructs a new DuplicateIDException with specified error message
@param the message to use
*/
public DuplicateIDException(String s) {
super(s);
}
}
Last Updated