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: import org.vfny.geoserver.wms.WmsException;
08:
09: /**
10: * @author Gabriel Rold?n
11: * @version $Id: EncoderConfigurationException.java 6326 2007-03-15 18:36:40Z jdeolive $
12: */
13: public class EncoderConfigurationException extends WmsException {
14: public EncoderConfigurationException(String message) {
15: super (message);
16: }
17:
18: public EncoderConfigurationException(String message, String locator) {
19: super (message, locator);
20: }
21:
22: public EncoderConfigurationException(Throwable e, String message,
23: String locator) {
24: super(e, message, locator);
25: }
26: }
|