com.sysunite.weaver.connector.RelationPropertyNotFoundException Maven / Gradle / Ivy
package com.sysunite.weaver.connector;
/**
* Created by gijs on 18/04/16.
*/
public class RelationPropertyNotFoundException extends RuntimeException {
private final String nodeID;
private final String predicate;
public RelationPropertyNotFoundException(String nodeID, String predicate) {
this.nodeID = nodeID;
this.predicate = predicate;
}
@Override
public String getMessage() {
return "Node " + nodeID + " does not have a relation with predicate " + predicate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy