View Javadoc

1   package com.atlassian.johnson.config;
2   
3   import org.apache.commons.lang.exception.NestableException;
4   
5   /**
6    * Exception thrown during Johnson configuration
7    */
8   public class ConfigurationException extends NestableException
9   {
10      public ConfigurationException()
11      {
12      }
13  
14      public ConfigurationException(String string)
15      {
16          super(string);
17      }
18  
19      public ConfigurationException(Throwable throwable)
20      {
21          super(throwable);
22      }
23  
24      public ConfigurationException(String string, Throwable throwable)
25      {
26          super(string, throwable);
27      }
28  }