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