com.github.jshaptic.js4j.JsonParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of js4j Show documentation
Show all versions of js4j Show documentation
Wrapper for Java classes, which emulates Javascript variables and its API. Also includes ported Lodash library.
The newest version!
package com.github.jshaptic.js4j;
public class JsonParserException extends RuntimeException
{
private static final long serialVersionUID = -209820207012642147L;
public JsonParserException(String message)
{
super(message);
}
}