As one of my constructors, I used the following: public Human (int weight) { this.weight = weight; } I received the message below. I changed the parameters of the constructor to something else and it compiled and verified. What was it trying to tell me in the error message? I don't know why my change worked. Thanks for your help. com/codegym/task/task10/task1013/Solution.java:52: error: constructor Human(int) is already defined in class com.codegym.task.task10.task1013.Solution.Human public Human(int age) {