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