SessionError.h File
SessionError exception carrying a SessionReport. More...
Included Headers
#include "pipeline/SessionReport.h"
#include <stdexcept>
#include <string>
#include <utility>
Namespaces Index
| namespace | simaai |
| namespace | neat |
Classes Index
| class | SessionError |
Description
SessionError exception carrying a SessionReport.
File Listing
The file content with the documentation metadata removed is:
8#include "pipeline/SessionReport.h"
14namespace simaai::neat {
17class SessionError : public std::runtime_error {
19 explicit SessionError(std::string msg) : std::runtime_error(std::move(msg)), report_{} {}
20 SessionError(std::string msg, SessionReport report)
21 : std::runtime_error(std::move(msg)), report_(std::move(report)) {}
22 const SessionReport& report() const {
27 SessionReport report_;
Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.9.1.