src/java.management.rest/share/classes/com/oracle/jmx/remote/rest/mapper/JSONDataException.java
branchjmx-rest-api
changeset 55985 0c5a02edfdef
child 55997 f881344569d9
equal deleted inserted replaced
55984:a43ae4e5fa0a 55985:0c5a02edfdef
       
     1 /*
       
     2  * To change this license header, choose License Headers in Project Properties.
       
     3  * To change this template file, choose Tools | Templates
       
     4  * and open the template in the editor.
       
     5  */
       
     6 package com.oracle.jmx.remote.rest.mapper;
       
     7 
       
     8 /**
       
     9  * @author harsha
       
    10  */
       
    11 public class JSONDataException extends Exception {
       
    12 
       
    13     private static final long serialVersionUID = 2430707794210680967L;
       
    14 
       
    15     public JSONDataException() {
       
    16         super();
       
    17     }
       
    18 
       
    19     public JSONDataException(String s) {
       
    20         super(s);
       
    21     }
       
    22 
       
    23     public JSONDataException(String s, Throwable ex) {
       
    24         super(s, ex);
       
    25     }
       
    26 }