You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
597 B

/**
* @license Highcharts JS v2.3.3 (2012-11-02)
*
* (c) 20012-2014
*
* Author: Gert Vaartjes
*
* License: www.highcharts.com/license
*/
package com.highcharts.export.converter;
public class SVGConverterException extends Exception {
private static final long serialVersionUID = -5110552374074051446L;
private String mistake;
public SVGConverterException() {
super();
mistake = "unknown to men";
}
public SVGConverterException(String err) {
super(err); // call super class constructor
mistake = err; // save message
}
public String getError() {
return mistake;
}
}