1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-13 08:24:27 +00:00
This commit is contained in:
YuSanka
2019-09-02 10:07:31 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -567,7 +567,7 @@ namespace Slic3r {
{
// ensure the zip archive is closed and rethrow the exception
close_zip_reader(&archive);
throw e;
throw std::runtime_error(e.what());
}
}
}
+1 -1
View File
@@ -872,7 +872,7 @@ bool load_amf_archive(const char* path, DynamicPrintConfig* config, Model* model
{
// ensure the zip archive is closed and rethrow the exception
close_zip_reader(&archive);
throw e;
throw std::runtime_error(e.what());
}
break;