diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-05-18 14:23:58 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-05-21 11:52:00 -0400 |
commit | 1e1e6f56d24a0cd6a3b270dc794374df6c3c832f (patch) | |
tree | d21bade8f0a178316ba5f1660687c30a352b6d0c /src/doc_reform/io_in | |
parent | meson using subproject directory, not dub directly (diff) |
catching
Diffstat (limited to 'src/doc_reform/io_in')
-rw-r--r-- | src/doc_reform/io_in/read_config_files.d | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc_reform/io_in/read_config_files.d b/src/doc_reform/io_in/read_config_files.d index 9180c20..65b5388 100644 --- a/src/doc_reform/io_in/read_config_files.d +++ b/src/doc_reform/io_in/read_config_files.d @@ -89,7 +89,7 @@ webserv: Node yaml_root; try { yaml_root = Loader.fromString(config_file_str).load(); - } catch { + } catch (Throwable) { import std.stdio; writeln("ERROR failed to read config file content, not parsed as yaml, program default used"); conf_filename = "VIRTUAL"; |