I have the following base class and sub class:
public class BaseClass<T> {
public BaseClass(T value){
}
public class NewClass<T> extends BaseClass<T> {
public NewClass(T value){
}
}
I get the following error: Implicit super constructor BaseClass() is undefined. Must explicitly invoke another constructor
How do I go about fixing this?