src/java.management.rest/share/classes/com/oracle/jmx/remote/rest/mapper/JSONDataException.java
branchjmx-rest-api
changeset 55985 0c5a02edfdef
child 55997 f881344569d9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/java.management.rest/share/classes/com/oracle/jmx/remote/rest/mapper/JSONDataException.java	Tue Aug 29 13:34:15 2017 +0530
@@ -0,0 +1,26 @@
+/*
+ * 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);
+    }
+}