package com.odal.petstore;
/**
* @author Gennady Krizhevsky
*/
public class OdalPetstoreException extends Exception {
public OdalPetstoreException() {
}
public OdalPetstoreException(String message) {
super(message);
}
public OdalPetstoreException(Throwable cause) {
super(cause);
}
public OdalPetstoreException(String message, Throwable cause) {
super(message, cause);
}
}
|