pl.chilldev.commons.text.TextProcessingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-text Show documentation
Show all versions of commons-text Show documentation
Text processing utilities.
/*
* This file is part of the ChillDev-Commons.
*
* @license http://mit-license.org/ The MIT license
* @copyright 2016 © by Rafał Wrzeszcz - Wrzasq.pl.
*/
package pl.chilldev.commons.text;
/**
* Error occuring during text processing.
*/
public class TextProcessingException extends Exception
{
/**
* Serializable class ID.
*/
private static final long serialVersionUID = 1L;
/**
* Constructor with error message.
*
* @param message Error message.
*/
public TextProcessingException(String message)
{
super(message);
}
/**
* Constructor with error message and root cause.
*
* @param message Error message.
* @param cause The underlying issue that caused the problem.
*/
public TextProcessingException(String message, Throwable cause)
{
super(message, cause);
}
}