package latexDraw.parsers.svg;
/**
* Defines the exception to use when an SVG document is malformed.<br>
*<br>
* This file is part of LaTeXDraw.<br>
* Copyright (c) 2005-2008 Arnaud BLOUIN<br>
*<br>
* LaTeXDraw is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.<br>
*<br>
* LaTeXDraw is distributed without any warranty; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.<br>
*<br>
* 09/11/07<br>
* @author Arnaud BLOUIN<br>
* @version 0.1<br>
*/
public class MalformedSVGDocument extends Exception
{
private static final long serialVersionUID = 1L;
@Override
public String toString()
{
return "The SVG document is malformed.";//$NON-NLS-1$
}
}
|