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