com.sysunite.weaver.connector.ValuePropertyNotFoundException Maven / Gradle / Ivy
package com.sysunite.weaver.connector;
/**
* Created by gijs on 15/04/16.
*/
public class ValuePropertyNotFoundException extends RuntimeException {
private final String nodeId;
private final String predicate;
public ValuePropertyNotFoundException(String nodeId, String predicate) {
this.nodeId = nodeId;
this.predicate = predicate;
}
@Override
public String getMessage() {
return "Individual " + nodeId + " has no value for predicate " + predicate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy