Replace Base::Exception with appropriate subclass

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

View File

@@ -74,12 +74,12 @@ unsigned int DrawParametricTemplate::getMemSize(void) const
}
double DrawParametricTemplate::getWidth() const {
throw Base::Exception("Need to Implement");
throw Base::NotImplementedError("Need to Implement");
}
double DrawParametricTemplate::getHeight() const {
throw Base::Exception("Need to Implement");
throw Base::NotImplementedError("Need to Implement");
}