Back to project page svg-android.
The source code is released under:
Apache License
If you think the Android project svg-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.applantation.android.svg; /*from w w w .ja v a2 s .com*/ /** * 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); } }