001package javax.visrec.ml; 002 003/** 004 * Exception thrown if anything fails in classifying input using a classifier. 005 * 006 * @author Kevin Berendsen 007 * @since 1.0 008 */ 009public class ClassificationException extends RuntimeException { 010 011 /** 012 * Creates a new instance of the exception 013 * @param message additional message of the cause. 014 * @param throwable caused by throwable. 015 */ 016 public ClassificationException(String message, Throwable throwable) { 017 super(message, throwable); 018 } 019 020}