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

com.inversoft.rest.JSONException Maven / Gradle / Ivy

Go to download

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

There is a newer version: 4.2.1
Show newest version
/*
 * 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