File tree Expand file tree Collapse file tree
core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,12 +82,13 @@ public ValidationResultIterator performValidation() {
8282 validationResults = new ValidationResultIterator (iterator , effectiveValidationResultsLimitPerConstraint );
8383 return validationResults ;
8484 } catch (Throwable e ) {
85- logger .warn ("Error validating SHACL Shape {}" , shape .getId (), e );
86- logger .warn ("Error validating SHACL Shape\n {}" , shape , e );
85+ logger .warn ("Internal error while trying to validate SHACL Shape {}" , shape .getId (), e );
86+ logger .warn ("Internal error while trying to validate SHACL Shape\n {}" , shape , e );
8787 if (e instanceof Error ) {
8888 throw e ;
8989 }
90- throw new SailException ("Error validating SHACL Shape " + shape .getId () + "\n " + shape , e );
90+ throw new SailException (
91+ "Internal error while trying to validate SHACL Shape " + shape .getId () + "\n " + shape , e );
9192 } finally {
9293 handlePostLogging (before , validationResults );
9394 }
You can’t perform that action at this time.
0 commit comments