From 2b385f20e7ddefd37f4ad6080b869c2120e67435 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 19 Jan 2017 18:00:13 +0100 Subject: New loplugin:dynexcspec: Add @throws documentation, codemaker Change-Id: I94a9f72fc81439fc97c884009447d353c6c6a517 --- include/codemaker/options.hxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/codemaker/options.hxx') diff --git a/include/codemaker/options.hxx b/include/codemaker/options.hxx index 5a0f0dba3d70..019f09803b5e 100644 --- a/include/codemaker/options.hxx +++ b/include/codemaker/options.hxx @@ -45,6 +45,7 @@ public: Options(); virtual ~Options(); + /// @throws IllegalArgument virtual bool initOptions(int ac, char* av[], bool bCmdFile=false) throw( IllegalArgument ) = 0; @@ -52,6 +53,7 @@ public: const ::rtl::OString& getProgramName() const { return m_program;} bool isValid(const ::rtl::OString& option) const; + /// @throws IllegalArgument const OString& getOption(const ::rtl::OString& option) const throw( IllegalArgument ); -- cgit