-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.ttl
483 lines (481 loc) · 16.5 KB
/
error.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
# baseURI: http://lodlaundromat.org/error/ontology/
# imports: http://lodlaundromat.org/resource/person
# imports: http://purl.org/vocommons/voaf
@prefix : <http://lodlaundromat.org/error/ontology/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix error: <http://lodlaundromat.org/error/ontology/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix formats: <http://www.w3.org/ns/formats/> .
@prefix httpo: <http://lodlaundromat.org/http/ontology/> .
@prefix llm: <http://lodlaundromat.org/metrics/ontology/> .
@prefix llo: <http://lodlaundromat.org/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix person: <http://lodlaundromat.org/resource/person/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix void-ext: <http://ldf.fi/void-ext#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
error:
rdf:type voaf:Vocabulary ;
rdf:type owl:Ontology ;
cc:license <http://creativecommons.org/licenses/by/3.0/> ;
dc:creator person:laurens_rietveld ;
dc:creator person:rinke_hoekstra ;
dc:creator person:wouter_beek ;
dcterms:created "2014-09-24"^^xsd:date ;
dcterms:description "Vocabulary for describing crawling errors, such as archive and http errors" ;
dcterms:modified "2015-11-18"^^xsd:date ;
dcterms:publisher "VU University Amsterdam" ;
dcterms:title "Vocabulary for describing crawling errors" ;
vann:preferredNamespacePrefix "error" ;
vann:preferredNamespaceUri "http://lodlaundromat.org/error/ontology/" ;
voaf:classNumber 33 ;
voaf:propertyNumber 10 ;
rdfs:isDefinedBy error: ;
owl:imports <http://lodlaundromat.org/resource/person> ;
owl:imports <http://purl.org/vocommons/voaf> ;
owl:versionInfo "1.0.1" ;
foaf:homepage <http://lodlaundromat.org> ;
.
<http://lodlaundromat.org/error/ontology/4xxHttpError>
rdf:type owl:Class ;
rdfs:comment "An HTTP error in the 400-range."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "4xx HTTP Error"@en-us ;
rdfs:subClassOf error:HttpError ;
.
<http://lodlaundromat.org/error/ontology/5xxHttpError>
rdf:type owl:Class ;
rdfs:comment "An HTTP error in the 500-range."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "5xx HTTP Error"@en-us ;
rdfs:subClassOf error:HttpError ;
.
error:Action
rdf:type owl:Class ;
rdfs:comment "An action performed by a computing device."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "action"@en-us ;
.
error:ArchiveError
rdf:type owl:Class ;
rdfs:comment "An error that occurs as part of an archive (un)packing process."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "archive error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:CharacterEncodingError
rdf:type owl:Class ;
rdfs:comment "An error due to the use of an illegitimate character code. The character code is stored under the error:object property."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "character encoding error"@en-us ;
rdfs:subClassOf error:EncodingError ;
.
error:DirectoryExistenceError
rdf:type owl:Class ;
error:code "17"^^xsd:nonNegativeInteger ;
error:message "File exists"^^xsd:string ;
error:variableName "EXIST"^^xsd:string ;
rdfs:comment "An error that occurs because a directory which is assumed to exist does not."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "directory existence error"@en-us ;
rdfs:subClassOf error:ExistenceError ;
.
error:DirectoryNotEmptyError
rdf:type owl:Class ;
error:code "39"^^xsd:nonNegativeInteger ;
error:message "Directory not empty"^^xsd:string ;
error:variableName "ENOTEMPTY"^^xsd:string ;
rdfs:comment "An error that occurs because a directory is assumed to be empty, but is not."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "directory not empty"@en-us ;
rdfs:subClassOf error:ExistenceError ;
.
error:EncodingError
rdf:type owl:Class ;
rdfs:comment "An error due to the use of an illigitimate or unrecognized encoding."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "encoding error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:Error
rdf:type owl:Class ;
rdfs:comment "An recognized irregularity in program execution."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "error"@en-us ;
.
error:ExistenceError
rdf:type owl:Class ;
error:code "2"^^xsd:nonNegativeInteger ;
error:message "No such file or directory"^^xsd:string ;
error:variableName "ENOENT"^^xsd:string ;
rdfs:comment "An error that occurs because a resource which is assumed to exist does not."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "existence error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:FileExistenceError
rdf:type owl:Class ;
rdfs:comment "An error that occurs because a file which is assumed to exist does not."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "file existence error"@en-us ;
rdfs:subClassOf error:ExistenceError ;
.
error:HttpError
rdf:type owl:Class ;
rdfs:comment "An error that is emitted as part of an HTTP reply."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "HTTP error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:HttpUri
rdf:type owl:Class ;
rdfs:comment "A URI that uses the HTTP scheme."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "HTTP URI"@en-us ;
rdfs:subClassOf error:Object ;
.
error:IoError
rdf:type owl:Class ;
rdfs:comment "An error that was thrown due to an input and/or output issue."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "IO error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:IsADirectoryError
rdf:type owl:Class ;
error:code "21"^^xsd:nonNegativeInteger ;
error:message "Is a directory"^^xsd:string ;
error:variableName "EISDIR"^^xsd:string ;
rdfs:comment "???"@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "source sink error"@en-us ;
rdfs:subClassOf error:ExistenceError ;
.
error:MalformedUrl
rdf:type owl:Class ;
rdfs:comment "An error that is thrown for a value which is expected to be a URL but does not conform to URL syntax."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "malformed URL"@en-us ;
rdfs:subClassOf error:Error ;
.
error:MissingTurtlePrefixDefinition
rdf:type owl:Class ;
rdfs:comment "An error that occurs if a Turtle prefix is used but not defined."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "missing Turtle prefix definition"@en-us ;
rdfs:subClassOf error:TurtleParserError ;
.
error:Object
rdf:type owl:Class ;
rdfs:comment "An object that is related to an error."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "object"@en-us ;
.
error:ParserError
rdf:type owl:Class ;
rdfs:comment "An error that is emitted by a parser, indicating deviation from a defined grammar."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "parser error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:PermissionError
rdf:type owl:Class ;
rdfs:comment "An error that occurs because a specific action is not allowed to be performed w.r.t. a specific object that is of a given type."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "permission error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:RdfParserError
rdf:type owl:Class ;
rdfs:comment "An error that is emitted by an RDF parser."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "RDF parser error"@en-us ;
rdfs:subClassOf error:ParserError ;
.
error:RdfxmlParserError
rdf:type owl:Class ;
rdfs:comment "An that is emitted by an RDF/XML parser when it encounters data that does not conform to the RDF/XML grammar."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "RDF/XML parser error"@en-us ;
rdfs:subClassOf error:RdfParserError ;
rdfs:subClassOf error:XmlParserError ;
.
error:ReadError
rdf:type owl:Class ;
rdfs:comment "An error that occurs while reading data."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "read error"@en-us ;
rdfs:subClassOf error:IoError ;
.
error:RedefinedRdfId
rdf:type owl:Class ;
rdfs:comment "An error that is thrown whenever multiple definitions of the same resource occur in an RDF/XML document. This typically occurs whenever more than one rdf:Id statement occurs for the same resource."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "redefined RDF identifier"@en-us ;
rdfs:subClassOf error:RdfxmlParserError ;
.
error:SgmlParserError
rdf:type owl:Class ;
rdfs:comment "A warning that is emitted by an SGML parser."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "SGML parser error"@en-us ;
rdfs:subClassOf error:ParserError ;
.
error:SocketError
rdf:type owl:Class ;
rdfs:comment "An error thrown because of a socket-related problem."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "socket error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:StreamPosition
rdf:type owl:Class ;
rdfs:comment "A position in a stream."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "stream position"@en-us ;
rdfs:subClassOf error:Error ;
.
error:SyntaxError
rdf:type owl:Class ;
rdfs:comment "A parser error that is due to the occurrence of an expression in the parsed data stream that does not conform to the expected grammar."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "syntax position"@en-us ;
rdfs:subClassOf error:ParserError ;
.
error:TimeoutError
rdf:type owl:Class ;
rdfs:comment "An error that is thrown due to a timeout."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "timeout error"@en-us ;
rdfs:subClassOf error:Error ;
.
error:TurtleParserError
rdf:type owl:Class ;
rdfs:comment "A warning that is emitted by an XML parser."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "XML parser error"@en-us ;
rdfs:subClassOf error:RdfParserError ;
.
error:WriteError
rdf:type owl:Class ;
rdfs:comment "An error that occurs while writing data."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "write error"@en-us ;
rdfs:subClassOf error:IoError ;
.
error:XmlNameError
rdf:type owl:Class ;
rdfs:comment "The argument to rdf:ID is not an XML name."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "XML name error"@en-us ;
rdfs:subClassOf error:XmlParserError ;
.
error:XmlParserError
rdf:type owl:Class ;
rdfs:comment "A warning that is emitted by an XML parser."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "XML parser error"@en-us ;
rdfs:subClassOf error:SgmlParserError ;
.
error:action
rdf:type owl:ObjectProperty ;
rdfs:comment "The action to which the error is related."@en-us ;
rdfs:domain error:Error ;
rdfs:isDefinedBy error: ;
rdfs:label "action"@en-us ;
rdfs:range error:Action ;
.
error:character
rdf:type owl:DatatypeProperty ;
rdfs:comment "The character number of a stream position, indicating the number of characters that have preceded it."@en-us ;
rdfs:domain error:StreamPosition ;
rdfs:isDefinedBy error: ;
rdfs:label "character"@en-us ;
rdfs:range xsd:integer ;
.
error:code
rdf:type owl:DatatypeProperty ;
rdfs:comment "Error code as used by the program in which the error occurs."@en-us ;
rdfs:domain error:Error ;
rdfs:isDefinedBy error: ;
rdfs:label "error code"@en-us ;
rdfs:range xsd:nonNegativeInteger ;
.
error:column
rdf:type owl:DatatypeProperty ;
rdfs:comment "The column number of a stream position, indicating the number of characters that have preceded it since the last newline character or since the beginning of the stream."@en-us ;
rdfs:domain error:StreamPosition ;
rdfs:isDefinedBy error: ;
rdfs:label "column"@en-us ;
rdfs:range xsd:integer ;
.
error:connectionRefused
rdf:type error:SocketError ;
error:code "111"^^xsd:nonNegativeInteger ;
error:message "Connection refused"^^xsd:string ;
error:variableName "ECONNREFUSED"^^xsd:string ;
rdfs:isDefinedBy error: ;
.
error:connectionResetByPeer
rdf:type error:ExistenceError ;
rdf:type error:ReadError ;
rdf:type error:SocketError ;
error:code "104"^^xsd:nonNegativeInteger ;
error:message "Connection reset by peer"^^xsd:string ;
error:variableName "ECONNRESET"^^xsd:string ;
rdfs:isDefinedBy error: ;
.
error:connectionTimedOut
rdf:type error:SocketError ;
error:code "110"^^xsd:nonNegativeInteger ;
error:message "Connection timed out"^^xsd:string ;
error:variableName "ETIMEDOUT"^^xsd:string ;
rdfs:isDefinedBy error: ;
.
error:encodingError
rdf:type error:WriteError ;
rdfs:comment "Encoding cannot represent character."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "encoding error"@en-us ;
.
error:hostNotFound
rdf:type error:SocketError ;
rdfs:isDefinedBy error: ;
rdfs:label "Host not found"@en-us ;
.
error:illegalUtf8Continuation
rdf:type error:ReadError ;
rdfs:comment "Illegal UTF-8 continuation."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "illegal UTF-8 continuation"@en-us ;
.
error:illegalUtf8Start
rdf:type error:ReadError ;
rdfs:comment "Illegal UTF-8 start."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "illegal UTF-8 start"@en-us ;
.
error:invalidCentralDirectorySignature
rdf:type error:ArchiveError ;
error:code "25"^^xsd:nonNegativeInteger ;
error:message "Invalid central directory signature."^^xsd:string ;
rdfs:isDefinedBy error: ;
.
error:isADirectory
rdf:type error:ReadError ;
error:code "21"^^xsd:nonNegativeInteger ;
error:message "Is a directory"^^xsd:string ;
error:variableName "EISDIR"^^xsd:string ;
rdfs:comment "???"@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "is a directory"@en-us ;
.
error:line
rdf:type owl:DatatypeProperty ;
rdfs:comment "The line number of a stream position, indicating the number of newline characters that have preceded it."@en-us ;
rdfs:domain error:StreamPosition ;
rdfs:isDefinedBy error: ;
rdfs:label "column"@en-us ;
rdfs:range xsd:integer ;
.
error:message
rdf:type owl:DatatypeProperty ;
rdfs:comment "Error message for the human programmer."@en-us ;
rdfs:domain error:Error ;
rdfs:isDefinedBy error: ;
rdfs:label "error message"@en-us ;
rdfs:range xsd:string ;
.
error:missingTypeKeywordInMtreeSpec
rdf:type error:ArchiveError ;
error:code "2"^^xsd:nonNegativeInteger ;
error:message "Missing type keyword in mtree specification."^^xsd:string ;
rdfs:isDefinedBy error: ;
.
error:noData
rdf:type error:SocketError ;
error:code "61"^^xsd:nonNegativeInteger ;
error:message "No data available"^^xsd:string ;
error:variableName "ENODATA"^^xsd:string ;
rdfs:isDefinedBy error: ;
rdfs:label "No data"@en-us ;
.
error:noRouteToHost
rdf:type error:SocketError ;
error:code "113"^^xsd:nonNegativeInteger ;
error:message "No route to host"^^xsd:string ;
error:variableName "EHOSTUNREACH"^^xsd:string ;
rdfs:isDefinedBy error: ;
.
error:notATypewriter
rdf:type error:ReadError ;
error:code "25"^^xsd:nonNegativeInteger ;
error:message "Inappropriate ioctl for device"^^xsd:string ;
error:variableName "ENOTTY"^^xsd:string ;
rdfs:comment "Inappropriate input/output control for device."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "not a typewriter"@en-us ;
.
error:object
rdf:type owl:ObjectProperty ;
rdfs:comment "The name of the object to which the error relates."@en-us ;
rdfs:domain error:Error ;
rdfs:isDefinedBy error: ;
rdfs:label "object"@en-us ;
rdfs:range error:Object ;
.
error:readTimeoutError
rdf:type error:TimeoutError ;
rdfs:comment "Timeout occurs while reading"@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "read timeout error"@en-us ;
.
error:redirectAction
rdf:type error:Action ;
rdfs:comment "A rediraction action."@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "redirect action"@en-us ;
.
error:sourceLine
rdf:type owl:DatatypeProperty ;
rdfs:comment "The line number in the original source file for which a parser warning was thrown."@en-us ;
rdfs:domain error:ParserError ;
rdfs:isDefinedBy error: ;
rdfs:label "source line"@en-us ;
rdfs:range xsd:integer ;
.
error:sslError
rdf:type error:Error ;
rdfs:comment "SSL error"@en-us ;
rdfs:isDefinedBy error: ;
rdfs:label "SSL error"@en-us ;
.
error:streamPosition
rdf:type owl:ObjectProperty ;
rdfs:comment "The stream position at which an error occurred."@en-us ;
rdfs:domain error:Error ;
rdfs:isDefinedBy error: ;
rdfs:label "stream position"@en-us ;
rdfs:range error:StreamPosition ;
.
error:tryAgain
rdf:type error:SocketError ;
rdfs:isDefinedBy error: ;
rdfs:label "Try again"@en-us ;
.
error:variableName
rdf:type owl:DatatypeProperty ;
rdfs:comment "The C variable name of the error as used in POSIX or in a Linux library or application."@en-us ;
rdfs:domain error:Error ;
rdfs:isDefinedBy error: ;
rdfs:label "variable name"@en-us ;
rdfs:range xsd:string ;
.