src/java.management.rest/share/classes/com/oracle/jmx/remote/rest/mapper/JSONMappingException.java
branchjmx-rest-api
changeset 55985 0c5a02edfdef
child 55994 9721e36abeb0
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 JSONMappingException extends Exception {
       
    12 
       
    13     private static final long serialVersionUID = -3099452281524742227L;
       
    14 
       
    15     public JSONMappingException() {
       
    16         super();
       
    17     }
       
    18 
       
    19     public JSONMappingException(String s) {
       
    20         super(s);
       
    21     }
       
    22 
       
    23     public JSONMappingException(String s, Throwable ex) {
       
    24         super(s, ex);
       
    25     }
       
    26 }