01: package com.technoetic.xplanner.domain.repository;
02:
03: public class RepositoryException extends Exception {
04: public RepositoryException() {
05: }
06:
07: public RepositoryException(Throwable cause) {
08: super (cause);
09: }
10:
11: public RepositoryException(String message) {
12: super (message);
13: }
14:
15: public RepositoryException(String message, Throwable cause) {
16: super(message, cause);
17: }
18: }
|