01: package org.andromda.translation.ocl.validation;
02:
03: /**
04: * Thrown when any unexpected error occurs during execution of the
05: * Introspector.
06: *
07: * @author Chad Brandon
08: */
09: public class OCLIntrospectorException extends RuntimeException {
10: /**
11: * Constructs an instance of OCLIntrospectorException taking the
12: * <code>parent</code> Throwable.
13: *
14: * @param parent the cause of the exception
15: */
16: public OCLIntrospectorException(Throwable parent) {
17: super (parent);
18: }
19:
20: /**
21: * Constructs an instance of OCLIntrospectorException taking the
22: * <code>message</code> String.
23: *
24: * @param message the message to include in the exception.
25: */
26: public OCLIntrospectorException(String message) {
27: super(message);
28: }
29: }
|