diff options
author | Valentin Popov <info@valentineus.link> | 2019-01-27 03:12:51 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-01-27 03:12:51 +0300 |
commit | 89f4a2bca82716ab75edc0ed83bad8ccc9159695 (patch) | |
tree | 614a863e883bed2c4aa61eff05c67e2daad674e7 /src | |
parent | 7e49cc920ec10cabd4bf99989070a370a9e12eab (diff) | |
download | bbb2json-89f4a2bca82716ab75edc0ed83bad8ccc9159695.tar.xz bbb2json-89f4a2bca82716ab75edc0ed83bad8ccc9159695.zip |
Sun, 27 Jan 2019 04:12:51 +0400
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 4d7f2d1..ae8b6f2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,6 +26,6 @@ fn main() { let data: ParserResult = parser(BufReader::new(file)); println!("{:#?}", serde_json::to_string_pretty(&data)); } - _ => panic!("Error File!"), + _ => panic!("File does not exist or is not available."), }; } |