01: package com.completex.objective.components.persistency.mapper;
02:
03: import com.completex.objective.components.OdalRuntimeException;
04:
05: /**
06: * @author Gennady Krizhevsky
07: */
08: public class OdalMappingRuntimeException extends OdalRuntimeException {
09: public OdalMappingRuntimeException() {
10: }
11:
12: public OdalMappingRuntimeException(String message) {
13: super (message);
14: }
15:
16: public OdalMappingRuntimeException(Throwable cause) {
17: super (cause);
18: }
19:
20: public OdalMappingRuntimeException(String message, Throwable cause) {
21: super(message, cause);
22: }
23: }
|