File size: 785 Bytes
6f3ebfa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | package org.maltparser.ml.lib;
import org.maltparser.core.exception.MaltChainedException;
/**
* LibException extends the MaltChainedException class and is thrown by classes
* within the lib package.
*
* @author Johan Hall
* @since 1.0
**/
public class LibException extends MaltChainedException {
public static final long serialVersionUID = 8045568022124816379L;
/**
* Creates a LibException object with a message
*
* @param message the message
*/
public LibException(String message) {
super(message);
}
/**
* Creates a LibException object with a message and a cause to the exception.
*
* @param message the message
* @param cause the cause to the exception
*/
public LibException(String message, Throwable cause) {
super(message, cause);
}
}
|