← index
libmx2/android/exception.cpp
Source: libmx2/android/exception.cpp
#include"exception.hpp"


namespace mx{
    Exception::Exception(const std::string &text_) : text_value{text_} {}
    std::string Exception::text() const { return text_value; }
}