1 package net.sf.cantina.exceptions; 2 3 4 5 6 /*** 7 * Datasource could not find object 8 * @author Stephane JAIS 9 */ 10 11 public class ObjectNotFoundException extends CantinaException 12 { 13 public ObjectNotFoundException () { super(); } 14 public ObjectNotFoundException (String s) { super(s); } 15 public ObjectNotFoundException (String s, Exception e) { super(s,e); } 16 }