org.kefirsf.bb.TextProcessorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kefirbb Show documentation
Show all versions of kefirbb Show documentation
KefirBB is a Java-library for text processing. Initially it was developed for BB2HTML translation.
But flexible configuration allows to use it in different cases. For example for parsing Markdown, Textile,
and for HTML filtration.
The newest version!
package org.kefirsf.bb;
/**
* Base class for text processor exceptions.
*
* @author Vitalii Samolovskikh aka Kefir
*/
public abstract class TextProcessorException extends RuntimeException {
protected TextProcessorException() {
}
protected TextProcessorException(String message) {
super(message);
}
protected TextProcessorException(String message, Throwable cause) {
super(message, cause);
}
protected TextProcessorException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy