de.tudarmstadt.ukp.wikipedia.revisionmachine.common.exceptions.DecodingException Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2011 Ubiquitous Knowledge Processing Lab
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v3
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl.html
*
* Project Website:
* http://jwpl.googlecode.com
*
* Contributors:
* Torsten Zesch
* Simon Kulessa
* Oliver Ferschke
******************************************************************************/
package de.tudarmstadt.ukp.wikipedia.revisionmachine.common.exceptions;
/**
* DecodingException Describes an exception that occurred while decoding the
* diff information.
*
*
*
*/
@SuppressWarnings("serial")
public class DecodingException
extends Exception
{
/**
* (Constructor) Creates a new DecodingException.
*
* @param description
* message
*/
public DecodingException(final String description)
{
super(description);
}
/**
* (Constructor) Creates a new DecodingException.
*
* @param e
* inner exception
*/
public DecodingException(final Exception e)
{
super(e);
}
/**
* (Constructor) Creates a new DecodingException.
*
* @param description
* message
* @param e
* inner exception
*/
public DecodingException(final String description, final Exception e)
{
super(description, e);
}
}