Replace Base::Exception with appropriate subclass

This commit is contained in:
wmayer
2018-11-14 19:42:10 +01:00
parent 7acdb56d92
commit b0247d184e
16 changed files with 41 additions and 41 deletions

View File

@@ -128,7 +128,7 @@ App::DocumentObjectExecReturn *DrawTemplate::execute(void)
void DrawTemplate::getBlockDimensions(double & /*x*/, double & /*y*/, double & /*width*/, double & /*height*/) const
{
throw Base::Exception("implement in virtual function");
throw Base::NotImplementedError("implement in virtual function");
}
DrawPage* DrawTemplate::getParentPage() const