KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.exoplatform.services.xml.querying;
2
3 /** This exception is thrown when UniFormTree object
4  * can not be created
5  * @version $Id: UniFormTransformationException.java 566 2005-01-25 12:50:49Z kravchuk $*/

6 public class UniFormTransformationException extends Exception JavaDoc {
7     /** Constructs an Exception without a message. */
8     public UniFormTransformationException() {
9         super();
10     }
11
12     /**
13      * Constructs an Exception with a detailed message.
14      * @param Message The message associated with the exception.
15      */

16     public UniFormTransformationException(String JavaDoc message) {
17         super(message);
18     }
19 }
20
Popular Tags