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

@@ -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");
}