/** * Copyright (C) 2012-2014 Gist Labs, LLC. (http://gistlabs.com) * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package com.gistlabs.mechanize.document.json.exceptions; public class JsonException extends RuntimeException { /** * */ private static final long serialVersionUID = 253115664519387324L; public JsonException() { // TODO Auto-generated constructor stub } public JsonException(final String arg0) { super(arg0); // TODO Auto-generated constructor stub } public JsonException(final Throwable arg0) { super(arg0); // TODO Auto-generated constructor stub } public JsonException(final String arg0, final Throwable arg1) { super(arg0, arg1); // TODO Auto-generated constructor stub } }