GuiceExternalConfigException.java :  » Google-tech » guice-xml-config » guice » xml » config » Java Open Source

Java Open Source » Google tech » guice xml config 
guice xml config » guice » xml » config » GuiceExternalConfigException.java
package guice.xml.config;
/**
 * <p><b>Description:</b><br>
 * This exception is thrown when binding fails from an external configuration file.
 * <p><b>Usage and remarks:</b><br>
 * This runtime exception indicates total failure and bad configuration.
 * <b>Created:</b> 3 Oct 2007 18:33:38<br>
 * <b>@author:</b> MPETZSCH<br>
 * <b>@since:</b> JDK 1.5<br>
 */
@SuppressWarnings("serial")
public class GuiceExternalConfigException extends RuntimeException {
  public GuiceExternalConfigException(Throwable cause) {
    super(cause);
  }
  
  /**
   * 
   */
  public GuiceExternalConfigException(String msg) {
    super(msg);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.