Constructors, Methods, Overriding, Overloading & Shadowing

Question 1 of 30

Given the following exception hierarchy
public class RenderingException extends Exception{}

public class ColorRenedringException extends RenderingException{}
and a method public abstract void renderShape() throws RenderingException which of the following method declarations will override the method renderShape