/**
* Copyright (c) 2009 - 2011 AppWork UG(haftungsbeschränkt) <e-mail@appwork.org>
*
* This file is part of org.appwork.storage.simplejson
*
* This software is licensed under the Artistic License 2.0,
* see the LICENSE file or http://www.opensource.org/licenses/artistic-license-2.0.php
* for details
*/
package org.appwork.storage.simplejson;
/**
* @author thomas
*
*/
public class ParserException extends Exception {
private static final long serialVersionUID = 6884248748788291881L;
public ParserException() {
super();
}
public ParserException(final String message) {
super(message);
}
public ParserException(final String message, final Throwable cause) {
super(message, cause);
}
public ParserException(final Throwable cause) {
super(cause);
}
}