View Javadoc

1   package org.andromda.core.common;
2   
3   
4   /***
5    * Any unchecked exception that will be thrown during the execution of the ResourceFinder
6    */
7   public class ResourceFinderException
8       extends RuntimeException
9   {
10      /***
11       * Constructs an instance of ResourceFinderException.
12       *
13       * @param parent
14       */
15      public ResourceFinderException(Throwable parent)
16      {
17          super(parent);
18      }
19  
20      /***
21       * Constructs an instance of ResourceFinderException.
22       *
23       * @param message
24       */
25      public ResourceFinderException(String message)
26      {
27          super(message);
28      }
29  
30      /***
31       * Constructs an instance of ResourceFinderException.
32       *
33       * @param message
34       * @param parent
35       */
36      public ResourceFinderException(
37          String message,
38          Throwable parent)
39      {
40          super(message, parent);
41      }
42  }