Make generateID() throw Exception

This commit is contained in:
hns 2005-03-21 15:37:13 +00:00
parent 3ff46c6dd3
commit a37a4e9216

View file

@ -43,6 +43,6 @@ public interface IDGenerator {
* @param dbmap
* @return
*/
public String generateID(DbMapping dbmap);
public String generateID(DbMapping dbmap) throws Exception;
}