This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
eclipse-rdf4j/rdf4j#1113 moved graph name constant and fixed complian…
…ce test setup
- Loading branch information
1 parent
08353d0
commit 59f71f6
Showing
6 changed files
with
117 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/NoShapesLoadedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
package org.eclipse.rdf4j.sail.shacl; | ||
|
||
import org.eclipse.rdf4j.model.vocabulary.RDF4J; | ||
|
||
public class NoShapesLoadedException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public NoShapesLoadedException() { | ||
super("Load shapes by adding them to named graph <"+ShaclSail.SHAPE_GRAPH+"> in the first transaction after initialization!"); | ||
super("Load shapes by adding them to named graph <" + RDF4J.SHACL_SHAPE_GRAPH | ||
+ "> in the first transaction after initialization!"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.