com.github.takumin.simplesgfparser.exception.SGFParseError Maven / Gradle / Ivy
The newest version!
package com.github.takumin.simplesgfparser.exception;
/**
* Thrown to indicate that it fails to parse
* @author takumi
*/
public class SGFParseError extends Error {
public SGFParseError(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy