21#include "commands/command.h" 
   23namespace cli::commands::docwriting
 
   33        : std::runtime_error(message), command(command)
 
 
 
Represents a command in the CLI application.
Definition command.h:36
Exception thrown when documentation strings of a command are not built.
Definition docs_exception.h:27
const Command & getCommand() const noexcept
Gets the command whose documentation wasn't built.
Definition docs_exception.h:39
DocsNotBuildException(const std::string &message, const Command &command)
Construct a DocsNotBuildException with a message and command.
Definition docs_exception.h:32