01: // You can redistribute this software and/or modify it under the terms of
02: // the Infozone Software License version 2 published by the Infozone Group
03: // (http://www.infozone-group.org).
04: //
05: // Copyright (C) @year@ by The Infozone Group. All rights reserved.
06: //
07: // $Id: XUpdateQueryConfigurationException.java,v 1.1 2002/05/10 08:59:12 per_nyfelt Exp $
08:
09: package org.infozone.tools.xml.queries;
10:
11: /**
12: * @version $Revision: 1.1 $ $Date: 2002/05/10 08:59:12 $
13: * @author <a href="http://www.softwarebuero.de">SMB</a>
14: * @see XPathQuery
15: */
16: public class XUpdateQueryConfigurationException extends Exception {
17:
18: /**
19: * Constructs a new <code>XUpdateProcesorConfigurationException</code>
20: * with no detail message.
21: */
22: public XUpdateQueryConfigurationException() {
23: super ();
24: }
25:
26: /**
27: * Constructs a new <code>XUpdateQueryConfigurationException</code> with the
28: * given detail message.
29: */
30: public XUpdateQueryConfigurationException(String msg) {
31: super(msg);
32: }
33:
34: }
|