When to use ‘raise NotImplementedError’?
As the documentation states [docs], In user defined base classes, abstract methods should raise this exception when they require derived classes to override the method, or while the class is being developed to indicate that the real implementation still needs to be added. Note that although the main stated use case this error is the indication … Read more