01: package org.andromda.core.common;
02:
03: /**
04: * Thrown when any unexpected error occurs during execution of the
05: * OCLIntrospector.
06: *
07: * @author Chad Brandon
08: */
09: public class IntrospectorException 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 IntrospectorException(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 IntrospectorException(String message) {
27: super(message);
28: }
29: }
|