org.swrlapi.parser.SWRLIncompleteRuleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi Show documentation
Show all versions of swrlapi Show documentation
Java API for working with SWRL rules and SQWRL queries
package org.swrlapi.parser;
import org.checkerframework.checker.nullness.qual.NonNull;
/**
* @see org.swrlapi.parser.SWRLParser
*/
public class SWRLIncompleteRuleException extends SWRLParseException
{
private static final long serialVersionUID = 1L;
public SWRLIncompleteRuleException(@NonNull String message)
{
super(message);
}
}