001 package com.hammurapi.config.runtime;
002
003 import com.hammurapi.config.bootstrap.ConfigurationException;
004
005 /**
006 * Listens for configuration exceptions during parallel initialization/destruction.
007 * @author Pavel Vlasov
008 *
009 */
010 public interface ConfigurationExceptionListener {
011
012 /**
013 * Invoked in the case of exception.
014 * @param e
015 */
016 void onException(ConfigurationException e);
017
018 }