01: package org.andromda.utils.beans.comparators;
02:
03: import org.andromda.utils.beans.BeanSorter;
04:
05: /**
06: * Thrown when an unexpected error occurs during {@link BeanSorter}
07: * execution.
08: *
09: * @author Chad Brandon
10: */
11: public class BeanComparatorException extends RuntimeException {
12: public BeanComparatorException(final Throwable throwable) {
13: super (throwable);
14: }
15:
16: public BeanComparatorException(final String message) {
17: super (message);
18: }
19:
20: public BeanComparatorException(final String message,
21: final Throwable throwable) {
22: super(message, throwable);
23: }
24: }
|