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