#pragma once #include "Exception.h" namespace crepe { template Exception::Exception(std::format_string fmt, Args &&... args) { this->error = std::format(fmt, std::forward(args)...); } } // namespace crepe