KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > icl > saxon > style > TerminationException


1 package com.icl.saxon.style;
2 import com.icl.saxon.tree.AttributeCollection;
3 import javax.xml.transform.*;
4
5 /**
6 * An exception thrown by xsl:message terminate="yes".<BR>
7 */

8
9 public class TerminationException extends TransformerException {
10     
11     public TerminationException(String JavaDoc message) {
12         super(message);
13     }
14
15     // just exists so it can be caught
16

17 }
18 //
19
// The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
20
// you may not use this file except in compliance with the License. You may obtain a copy of the
21
// License at http://www.mozilla.org/MPL/
22
//
23
// Software distributed under the License is distributed on an "AS IS" basis,
24
// WITHOUT WARRANTY OF ANY KIND, either express or implied.
25
// See the License for the specific language governing rights and limitations under the License.
26
//
27
// The Original Code is: all this file.
28
//
29
// The Initial Developer of the Original Code is
30
// Michael Kay of International Computers Limited (mhkay@iclway.co.uk).
31
//
32
// Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
33
//
34
// Contributor(s): none.
35
//
36
Popular Tags