1 package org.exoplatform.services.xml.querying; 2 3 /** This exception is thrown when condition occurred */ 4 public class ConfigException extends Exception { 5 /** Constructs an Exception without a message. */ 6 public ConfigException() { 7 super(); 8 } 9 10 /** 11 * Constructs an Exception with a detailed message. 12 * @param Message The message associated with the exception. 13 */ 14 public ConfigException(String message) { 15 super(message); 16 } 17 } 18