public class Student {
private String name;
public Student(String nameIn) {
name = nameIn;
}
public String getName() {
return name;
}
public void setName(String nameIn) {
name = nameIn;
}
}
and i get this error
Exception in thread "main" java.lang.NoSuchMethodError: main