View Javadoc
1   package org.andromda.utils.beans.comparators;
2   
3   /**
4    * An exception thrown during execution of a comparator.
5    */
6   public class ComparatorException
7       extends RuntimeException
8   {
9       private static final long serialVersionUID = 34L;
10  
11      /**
12       * @param throwable
13       */
14      public ComparatorException(final Throwable throwable)
15      {
16          super(throwable);
17      }
18  
19      /**
20       * @param msg
21       */
22      public ComparatorException(String msg)
23      {
24          super(msg);
25      }
26  
27      /**
28       * @param message
29       * @param throwable
30       */
31      public ComparatorException(
32          final String message,
33          final Throwable throwable)
34      {
35          super(message, throwable);
36      }
37  }