JODA  0.13.1 (59b41972)
JSON On-Demand Analysis
LOAD_error.h
Go to the documentation of this file.
1 //
2 // Created by Nico on 21/05/2019.
3 //
4 
5 #ifndef JODA_LOAD_ERROR_H
6 #define JODA_LOAD_ERROR_H
7 #include "../grammar/Load.h"
9 
10 // Missing Load
11 template <>
13  "Query must start with 'LOAD' statement.";
14 
15 // Missing Load var
16 template <>
18  "Expected 'LOAD' variable. (LOAD X ...)";
19 
20 // Missing LOAD X FROM FILE(S) "[...]"
21 template <>
23  "Expected 'LOAD' file/directory specifier";
24 template <>
26  "Expected '\"' after LOAD FROM FILE(S)";
27 template <>
29  "Expected '\"' after LOAD FROM FILE(S) \"[...]";
30 template <>
32  "Expected File/Directory name";
33 //
34 template <>
36  "Missing/Illegal 'LOAD' command";
37 
38 template <>
40  "Expected sampling number in (0,1)";
41 
42 template <>
44  "FROM URL not supported.";
45 
46 } // namespace joda::queryparsing::grammar
47 #endif // JODA_LOAD_ERROR_H