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.sld;
06:
07: import org.vfny.geoserver.ServiceException;
08:
09: public class SldException extends ServiceException {
10: public SldException() {
11: super ();
12: }
13:
14: public SldException(String error) {
15: super(error);
16: }
17: }
|