1 package org.apache.ojb.broker; 2 3 17 18 import java.sql.SQLException ; 19 20 26 public class KeyConstraintViolatedException extends PersistenceBrokerSQLException 27 { 28 31 public KeyConstraintViolatedException() 32 { 33 super(); 34 } 35 36 41 public KeyConstraintViolatedException(SQLException base) 42 { 43 super(base); 44 } 45 46 51 public KeyConstraintViolatedException(String msg) 52 { 53 super(msg); 54 } 55 56 62 public KeyConstraintViolatedException(String msg, SQLException base) 63 { 64 super(msg, base); 65 } 66 } 67 | Popular Tags |