com.larvalabs.svgandroid.SVGParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svg-android Show documentation
Show all versions of svg-android Show documentation
Brings SVG parsing and drawing functionality to Android devices. Forked from the original project at http://code.google.com/p/svg-android/.
package com.larvalabs.svgandroid;
/**
* Runtime exception thrown when there is a problem parsing an SVG.
*
* @author Larva Labs, LLC
*/
public class SVGParseException extends RuntimeException {
public SVGParseException(String s) {
super(s);
}
public SVGParseException(String s, Throwable throwable) {
super(s, throwable);
}
public SVGParseException(Throwable throwable) {
super(throwable);
}
}