001package com.ganteater.ae;
002
003public class ConfigurationException extends RuntimeException {
004
005        private static final long serialVersionUID = 1L;
006
007        public ConfigurationException(String string, Exception e) {
008                super(string, e);
009        }
010
011        public ConfigurationException(String string) {
012                super(string);
013        }
014
015}