aboutsummaryrefslogtreecommitdiff
path: root/lib/errors/importErrors.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/errors/importErrors.ml')
-rw-r--r--lib/errors/importErrors.ml7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/errors/importErrors.ml b/lib/errors/importErrors.ml
index 782291e..97a6259 100644
--- a/lib/errors/importErrors.ml
+++ b/lib/errors/importErrors.ml
@@ -13,12 +13,6 @@ type xlsError = {
exn : exn;
}
-exception
- JsonError of {
- json : string;
- element : string;
- }
-
exception InvalidEncoding of string
exception NullKey of int
exception SqlError of Sqlite3.Rc.t
@@ -40,7 +34,6 @@ exception
let repr_error = function
| SqlError s -> Printf.sprintf "%s Error" (Sqlite3.Rc.to_string s)
- | JsonError { json; element } -> Printf.sprintf "%s : %s" element json
| NullKey k ->
Printf.sprintf "The key %s is null" (ImportCSV.Csv.column_to_string k)
| Unknown_source source ->