org.swrlapi.exceptions.InvalidSWRLBuiltInNameException 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 InvalidSWRLBuiltInNameException extends SWRLBuiltInException
{
private static final long serialVersionUID = 1L;
public InvalidSWRLBuiltInNameException(@NonNull String ruleName, @NonNull String builtInName)
{
super("unknown built-in '" + builtInName + "' in rule '" + ruleName + "'.");
}
public InvalidSWRLBuiltInNameException(@NonNull String builtInName)
{
super("unknown built-in '" + builtInName + "': ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy