01: package com.technoetic.xplanner.soap;
02:
03: public class ObjectNotFoundException extends Exception {
04: public ObjectNotFoundException() {
05: }
06:
07: public ObjectNotFoundException(String message) {
08: super (message);
09: }
10:
11: public ObjectNotFoundException(Throwable cause) {
12: super (cause);
13: }
14:
15: public ObjectNotFoundException(String message, Throwable cause) {
16: super (message, cause);
17: }
18:
19: public ObjectNotFoundException(Class aClass, int id,
20: net.sf.hibernate.ObjectNotFoundException ex) {
21: this (aClass.getName() + " with id=" + id + " not found", ex);
22: }
23: }
|