All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.larvalabs.svgandroid.SVGParseException Maven / Gradle / Ivy

Go to download

Brings SVG parsing and drawing functionality to Android devices. Forked from the original project at http://code.google.com/p/svg-android/.

There is a newer version: 2.0.6
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy