8
donuts
7y

Python abstract classes... Looks like a pain in the ass...

I'm just gonna create a class filled with methods that just pass or throws NotImplementedException

Good enough?

Comments
  • 2
    If the subclass must implement a method raise an Exception. All else pass.
  • 1
    Yeah, good enough.
Add Comment