001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006
007package org.dllearner.core.probabilistic.unife;
008
009/**
010 *
011 * @author Giuseppe Cota <giuseppe.cota@unife.it>, Riccardo Zese
012 * <riccardo.zese@unife.it>
013 */
014public class StructureLearningException extends RuntimeException {
015    
016    public StructureLearningException() {
017        super();
018    }
019    
020    public StructureLearningException(String message) {
021        super(message);
022    }
023    
024    public StructureLearningException(Throwable cause) {
025        super(cause);
026    }
027    
028}