Mercurial > hg > LGDataverses
comparison src/main/java/edu/harvard/iq/dataverse/util/json/JsonParseException.java @ 10:a50cf11e5178
Rewrite LGDataverse completely upgrading to dataverse4.0
| author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
|---|---|
| date | Tue, 08 Sep 2015 17:00:21 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 9:5926d6419569 | 10:a50cf11e5178 |
|---|---|
| 1 package edu.harvard.iq.dataverse.util.json; | |
| 2 | |
| 3 /** | |
| 4 * thrown when something goes wrong in the parsing process. | |
| 5 * @author michael | |
| 6 */ | |
| 7 public class JsonParseException extends Exception { | |
| 8 | |
| 9 public JsonParseException(String message) { | |
| 10 super(message); | |
| 11 } | |
| 12 | |
| 13 public JsonParseException(String message, Throwable cause) { | |
| 14 super(message, cause); | |
| 15 } | |
| 16 | |
| 17 } |
