Is there an access modifier that makes a method public in the superclass and not existent in its subclass? Sort of like a mix of private and protected. I tried hiding the method in the subclass using the new keyword, but since there are overloads of the same method in the superclass, it only hides one of the overloads, which is not what I need.

Thanks