Hi I wanted to know what the difference and similarities between the two variations of the kind of the same methods would be.
public string test(String value)
throw new testException();
and
public abstract String test(String value) throw new testException;
please forgive me if my syntax is wrong.