9 const std::optional<std::string>& className,
10 const std::optional<std::string>& methodName,
11 const std::optional<int>& line)
13 std::ostringstream oss;
14 if (className.has_value() && methodName.has_value() && line.has_value())
16 oss <<
"From class " << className.value() <<
" in method " << methodName.value()
17 <<
" in line " << line.value();
18 if (contextItem.has_value())
20 oss <<
"\n" << contextItem.value();
23 else if (contextItem.has_value())
25 oss << contextItem.value();
27 contextList.push_back(oss.str());
33 const std::string& className,
38 error.
addToContext(std::nullopt, className,
function, line);
42 skills::manager::dto::FluxioException
45 skills::manager::dto::FluxioException
ret;
46 ret.message = message;
48 ret.contextList = contextList;
64 return "UNAUTHORIZED";