01: package net.sourceforge.jaxor;
02:
03: import net.sourceforge.jaxor.util.SystemException;
04:
05: public class EntityNotFoundException extends SystemException {
06: public EntityNotFoundException() {
07: super ();
08: }
09:
10: public EntityNotFoundException(String sql, QueryParams args) {
11: super ("SQL: " + sql + " " + args.toString());
12: }
13:
14: }
|