All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.asher_stern.crf.utilities.CrfException Maven / Gradle / Ivy

Go to download

Implementation of linear-chain Conditional Random Fields (CRF) in pure Java

There is a newer version: 1.2.0
Show newest version
package com.asher_stern.crf.utilities;

/**
 * Exception for this project.
 * 
 * @author Asher Stern
 * Date: Nov 3, 2014
 *
 */
public class CrfException extends RuntimeException
{
	private static final long serialVersionUID = 5414394233000815286L;

	public CrfException()
	{
		super();
	}

	public CrfException(String message, Throwable cause,
			boolean enableSuppression, boolean writableStackTrace)
	{
		super(message, cause, enableSuppression, writableStackTrace);
	}

	public CrfException(String message, Throwable cause)
	{
		super(message, cause);
	}

	public CrfException(String message)
	{
		super(message);
	}

	public CrfException(Throwable cause)
	{
		super(cause);
	}
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy