OrcaSlicer/src/slic3r/GUI/Jobs/PlaterJob.cpp
2021-01-19 15:01:20 +01:00

17 lines
409 B
C++

#include "PlaterJob.hpp"
#include "slic3r/GUI/GUI.hpp"
#include "slic3r/GUI/Plater.hpp"
namespace Slic3r { namespace GUI {
void PlaterJob::on_exception(const std::exception_ptr &eptr)
{
try {
if (eptr)
std::rethrow_exception(eptr);
} catch (std::exception &e) {
show_error(m_plater, _(L("An unexpected error occured: ")) + e.what());
}
}
}} // namespace Slic3r::GUI