aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/file_cmd_parser.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--utils/file_cmd_parser.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/utils/file_cmd_parser.hpp b/utils/file_cmd_parser.hpp
index f20d80f..78162a6 100644
--- a/utils/file_cmd_parser.hpp
+++ b/utils/file_cmd_parser.hpp
@@ -12,6 +12,7 @@
#include <aesnixx/all.hpp>
+#include <boost/config.hpp>
#include <boost/program_options.hpp>
#include <ostream>
@@ -20,6 +21,30 @@
namespace
{
+ BOOST_NORETURN inline void throw_key_required()
+ {
+ throw boost::program_options::error(
+ "a key is required but not specified");
+ }
+
+ BOOST_NORETURN inline void throw_iv_required()
+ {
+ throw boost::program_options::error(
+ "initialization vector is required for the selected mode of operation");
+ }
+
+ BOOST_NORETURN inline void throw_src_path_required()
+ {
+ throw boost::program_options::error(
+ "please, specify source file path");
+ }
+
+ BOOST_NORETURN inline void throw_dest_path_required()
+ {
+ throw boost::program_options::error(
+ "please, specify destination file path");
+ }
+
class CommandLineParser
{
public: