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.svg;
06:
07: /**
08: * @author Gabriel Rold?n
09: * @version $Id: AbortedException.java 6326 2007-03-15 18:36:40Z jdeolive $
10: */
11: public class AbortedException extends Exception {
12: public AbortedException(String msg) {
13: super(msg);
14: }
15: }
|