summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-05-23 19:24:58 +0700
committerDaniil Baturin <daniil@baturin.org>2018-05-23 19:24:58 +0700
commitfb6d3f6dfdbc3601a9af99263ec233bbd3a46e50 (patch)
treee5562e1cdab9cb97329e7358fa103725f62685fc
parentf0ed6868a5896dfde3d6519c1068f5e5dfea0417 (diff)
downloadvyconf-fb6d3f6dfdbc3601a9af99263ec233bbd3a46e50.tar.gz
vyconf-fb6d3f6dfdbc3601a9af99263ec233bbd3a46e50.zip
Expose missing exceptions from Config_tree in the module interface.
-rw-r--r--src/config_tree.mli2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config_tree.mli b/src/config_tree.mli
index f72eda9..863b2ad 100644
--- a/src/config_tree.mli
+++ b/src/config_tree.mli
@@ -2,6 +2,8 @@ type value_behaviour = AddValue | ReplaceValue
exception Duplicate_value
exception Node_has_no_value
+exception No_such_value
+exception Useless_set
type config_node_data = {
values : string list;