View Javadoc
1   package org.andromda.utils.beans.comparators;
2   
3   import org.andromda.utils.beans.BeanSorter;
4   
5   /**
6    * Thrown when an unexpected error occurs during {@link BeanSorter}
7    * execution.
8    *
9    * @author Chad Brandon
10   */
11  public class BeanComparatorException
12      extends RuntimeException
13  {
14      private static final long serialVersionUID = 34L;
15  
16      /**
17       * @param throwable
18       */
19      public BeanComparatorException(final Throwable throwable)
20      {
21          super(throwable);
22      }
23  
24      /**
25       * @param message
26       */
27      public BeanComparatorException(final String message)
28      {
29          super(message);
30      }
31  
32      /**
33       * @param message
34       * @param throwable
35       */
36      public BeanComparatorException(
37          final String message,
38          final Throwable throwable)
39      {
40          super(message, throwable);
41      }
42  }