1   package com.atlassian.seraph.config;
2   
3   /**
4    * Exception thrown during Seraph configuration.
5    */
6   public class ConfigurationException extends Exception
7   {
8       // /CLOVER:OFF
9       /**
10       * @deprecated please provide some information via another constructor
11       */
12      public ConfigurationException()
13      {}
14  
15      public ConfigurationException(final String s)
16      {
17          super(s);
18      }
19  
20      public ConfigurationException(final String s, final Throwable t)
21      {
22          super(s + " : " + t, t);
23      }
24  }