-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add page for common errors and add info to KI page
- Loading branch information
Showing
3 changed files
with
86 additions
and
31 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
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
sidebar_position: 9 | ||
--- | ||
# Common Error Messages | ||
|
||
On this page you can find a list of common error messages and what they mean. | ||
|
||
### `x` is not an unprefixed URI or literal | ||
Whenever you are specifying variable bindings, for example in a binding set when executing an ask, you may encounter this error. | ||
It occurs because all variable bindings need to be either RDF Literals or IRIs. | ||
If you want to identify a specific object or device, you can use something like `<http://www.example.org/x>`. | ||
Note that if the variable binding is for a subject in a triple (?subject ?predicate ?object), then an IRI is always rquired. | ||
For more information on bindings and binding sets, see: [Bindings](https://docs.knowledge-engine.eu/java_developer_api#bindings). |