01: package org.andromda.utils.beans.comparators;
02:
03: /**
04: * An exception thrown during execution of a comparator.
05: */
06: public class ComparatorException extends RuntimeException {
07: public ComparatorException(final Throwable throwable) {
08: super (throwable);
09: }
10:
11: public ComparatorException(String msg) {
12: super (msg);
13: }
14:
15: public ComparatorException(final String message,
16: final Throwable throwable) {
17: super(message, throwable);
18: }
19: }
|