Android Open Source - frances-tracing-game S V G Parse Exception






From Project

Back to project page frances-tracing-game.

License

The source code is released under:

Apache License

If you think the Android project frances-tracing-game listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.larvalabs.svgandroid;
// ww  w . j a  v  a 2s . c o  m
/**
 * 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);
    }
}




Java Source Code List

com.larvalabs.svgandroid.ParserHelper.java
com.larvalabs.svgandroid.SVGParseException.java
com.larvalabs.svgandroid.SVGParser.java
com.larvalabs.svgandroid.SVG.java
com.larvalabs.svgandroid.package-info.java
com.mtomczak.tracegame.Pathpoints.java
com.mtomczak.tracegame.Tracegame.java
com.mtomczak.tracegame.Traceview.java