View Javadoc

1   package com.atlassian.config;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: ROSS
6    * Date: 15/03/2004
7    * Time: 12:10:21
8    * To change this template use File | Settings | File Templates.
9    */
10  public class ConfigurationException extends Exception
11  {
12      public ConfigurationException(String message)
13      {
14          super(message);
15      }
16  
17      public ConfigurationException(String message, Throwable cause)
18      {
19          super(message, cause);
20      }
21  }