KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > xml > querying > impl > xtas > InstructionCompilerException


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