com.inversoft.rest.JSONException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restify Show documentation
Show all versions of restify Show documentation
The Java 8 REST Client used in our commercial REST Client libraries such as Passport Java Client and our Java 8 Chef Client called Barista
/*
* Copyright (c) 2016-2019, Inversoft Inc., All Rights Reserved
*/
package com.inversoft.rest;
/**
* @author Brian Pontarelli
*/
public class JSONException extends RuntimeException {
public JSONException() {
super();
}
public JSONException(Throwable cause) {
super(cause);
}
public JSONException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy