001 /** 002 * 003 */ 004 package org.wdssii.core; 005 006 /** 007 * @author lakshman 008 * 009 */ 010 @SuppressWarnings("serial") 011 public class ConfigurationException extends RuntimeException { 012 public ConfigurationException(Exception e) { 013 super(e); 014 } 015 016 public ConfigurationException(String error) { 017 super(error); 018 } 019 }