View Javadoc

1   package com.imcode.db.exceptions;
2   
3   import com.imcode.db.DatabaseException;
4   
5   import java.sql.SQLException;
6   
7   public class IntegrityConstraintViolationException extends DatabaseException {
8   
9       public IntegrityConstraintViolationException( String message, SQLException ex ) {
10          super(message, ex) ;
11      }
12  }