I write alot of these:
public class ImportantServiceImpl implements ImportantService {
public void doSomethingSuperImportant() {
throw new UnsupportedOperationException();
}
}
And some of these:
def cleverMethod: Int = throw new UnsupportedOperationException("Clever Method really?")
And very few of these:
class Base(object):
def awesome_function(self):
raise NotImplementedError
I work on various projects here and there.