org.swrlapi.exceptions.TargetSWRLRuleEngineNotImplementedFeatureException 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.exceptions;
import org.checkerframework.checker.nullness.qual.NonNull;
public class TargetSWRLRuleEngineNotImplementedFeatureException extends TargetSWRLRuleEngineException
{
private static final long serialVersionUID = 1L;
public TargetSWRLRuleEngineNotImplementedFeatureException(@NonNull String message)
{
super(message);
}
public TargetSWRLRuleEngineNotImplementedFeatureException(@NonNull String message, @NonNull Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy