Definition at line 43 of file error.h.
#include <error.h>
◆ diagram_generation_error()
clanguml::error::diagram_generation_error::diagram_generation_error |
( |
common::model::diagram_t |
type, |
|
|
std::string |
name, |
|
|
std::string |
description |
|
) |
| |
|
inline |
Definition at line 45 of file error.h.
47 : std::runtime_error{description}
48 , type_{type}
49 , name_{std::move(name)}
50 {
51 message_ =
52 fmt::format("Generation of {} diagram '{}' failed due to: {}",
53 diagram_type(), diagram_name(), description);
54 }
◆ diagram_name()
const std::string & clanguml::error::diagram_generation_error::diagram_name |
( |
| ) |
const |
|
inlinenoexcept |
◆ diagram_type()
◆ what()
const char * clanguml::error::diagram_generation_error::what |
( |
| ) |
const |
|
inlineoverridenoexcept |
Definition at line 56 of file error.h.
56{ return message_.c_str(); }
◆ message_
std::string clanguml::error::diagram_generation_error::message_ |
|
private |
◆ name_
std::string clanguml::error::diagram_generation_error::name_ |
|
private |
◆ type_
The documentation for this class was generated from the following file: