src/java.management.rest/share/classes/com/oracle/jmx/remote/rest/mapper/JSONDataException.java
author hb
Tue, 29 Aug 2017 13:34:15 +0530
branchjmx-rest-api
changeset 55985 0c5a02edfdef
child 55997 f881344569d9
permissions -rw-r--r--
REST Adapter Initial commit 1. Unit tested and working GET/POST interfaces 2. Unit tested and working JSON parser

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.oracle.jmx.remote.rest.mapper;

/**
 * @author harsha
 */
public class JSONDataException extends Exception {

    private static final long serialVersionUID = 2430707794210680967L;

    public JSONDataException() {
        super();
    }

    public JSONDataException(String s) {
        super(s);
    }

    public JSONDataException(String s, Throwable ex) {
        super(s, ex);
    }
}