01: package com.odal.petstore;
02:
03: /**
04: * @author Gennady Krizhevsky
05: */
06: public class OdalPetstoreException extends Exception {
07: public OdalPetstoreException() {
08: }
09:
10: public OdalPetstoreException(String message) {
11: super (message);
12: }
13:
14: public OdalPetstoreException(Throwable cause) {
15: super (cause);
16: }
17:
18: public OdalPetstoreException(String message, Throwable cause) {
19: super(message, cause);
20: }
21: }
|