001/** 002 * This file is part of LEAP. 003 * 004 * LEAP was implemented as a plugin of DL-Learner http://dl-learner.org, 005 * but some components can be used as stand-alone. 006 * 007 * LEAP is free software; you can redistribute it and/or modify 008 * it under the terms of the GNU General Public License as published by 009 * the Free Software Foundation; either version 3 of the License, or 010 * (at your option) any later version. 011 * 012 * LEAP is distributed in the hope that it will be useful, 013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 015 * GNU General Public License for more details. 016 * 017 * You should have received a copy of the GNU General Public License 018 * along with this program. If not, see <http://www.gnu.org/licenses/>. 019 * 020 */ 021package org.dllearner.core.probabilistic.unife; 022 023/** 024 * 025 * @author Giuseppe Cota <giuseppe.cota@unife.it> 026 */ 027public class ParameterLearningException extends RuntimeException { 028 029 public ParameterLearningException() { 030 super(); 031 } 032 033 public ParameterLearningException(String message) { 034 super(message); 035 } 036 037 public ParameterLearningException(Throwable cause) { 038 super(cause); 039 } 040}