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 public ConfigurationException()
10 {
11 }
12
13 public ConfigurationException(String s)
14 {
15 super(s);
16 }
17 }