All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.swrlapi.exceptions.SWRLRuleEngineException Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.swrlapi.exceptions;

import org.checkerframework.checker.nullness.qual.NonNull;

public class SWRLRuleEngineException extends SWRLAPIException
{
  private static final long serialVersionUID = 1L;

  public SWRLRuleEngineException()
  {
    super();
  }

  public SWRLRuleEngineException(@NonNull String message)
  {
    super(message);
  }

  public SWRLRuleEngineException(@NonNull String message, @NonNull Throwable cause)
  {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy