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 */
006package org.dllearner.exceptions;
007
008/**
009 *
010 * @author Giuseppe Cota <giuseppe.cota@unife.it>
011 */
012public class UnsupportedLearnedAxiom extends Exception {
013
014    public UnsupportedLearnedAxiom(String string) {
015        super(string);
016    }
017    
018}