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