01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.vfny.geoserver.wms.responses.map.kml;
06:
07: /**
08: * Copy of the exception class defined in the SVG producer.
09: * @TODO move up the package hiarachy and use single version from KML and SVG
10: */
11: public class AbortedException extends Exception {
12: public AbortedException(String msg) {
13: super(msg);
14: }
15: }
|