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

com.sysunite.weaver.connector.IndividualNotFoundException Maven / Gradle / Ivy

package com.sysunite.weaver.connector;

/**
 * Raised when an operation is performed on a non-existing node.
 */
public class IndividualNotFoundException extends RuntimeException {
  private final String id;

  public IndividualNotFoundException(String id) {
    this.id = id;
  }

  @Override
  public String getMessage() {
    return "Unable to find individual with identifier: " + id;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy