KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > xml > querying > ConfigException


1 package org.exoplatform.services.xml.querying;
2
3 /** This exception is thrown when condition occurred */
4 public class ConfigException extends Exception JavaDoc {
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 JavaDoc message) {
15         super(message);
16     }
17 }
18
Popular Tags