diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-11 06:40:30 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-22 12:22:26 +0100 |
commit | 820a7bda25c5541ce9580f99ec9f6eb512103e59 (patch) | |
tree | 8aec624cff21303fac4afe137ecb52c17c5d5329 /lib/errors | |
parent | 986bcb796d8b9e1f485baa8da599aa816c56b587 (diff) |
Removed the json configuration management
Diffstat (limited to 'lib/errors')
-rw-r--r-- | lib/errors/importErrors.ml | 7 | ||||
-rw-r--r-- | lib/errors/importErrors.mli | 10 |
2 files changed, 2 insertions, 15 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 -> diff --git a/lib/errors/importErrors.mli b/lib/errors/importErrors.mli index 5a2921b..445361e 100644 --- a/lib/errors/importErrors.mli +++ b/lib/errors/importErrors.mli @@ -4,8 +4,8 @@ exception SqlError of Sqlite3.Rc.t exception MisplacedWindow exception Unknown_source of string -(** Exception raised when a source used in a path is not declared as an - external *) +(** Exception raised when a source used in a path is not declared as an external +*) exception Cycle of string list (** Cycle between the dpendencies *) @@ -13,12 +13,6 @@ exception Cycle of string list exception Unknown_extension of string exception UnknowFunction of string -exception - JsonError of { - json : string; - element : string; - } - type xlsError = { source : ImportDataTypes.Table.t; row : int; |