im just really stuck on this task pls help
package com.codegym.task.task05.task0517;
/*
Creating cats
*/
public class Cat {
String name = null;
int weight;
int age;
String color;
String address = null;
public Cat(String name){
this.name = "Ellie";
this.age = 13;
this.weight = 13;
this.color = "red";
} public Cat(String name, int age, int weight){
this.name = "joe";
this.age = 12;
this.weight = 231;
this.color = "red";
} public Cat(int weight, String address, String color){
this.weight = 12;
this.color = "Red";
this.address = "white 1";
this.age = 13;
}public Cat(int weight, String color){
this.color = "white";
this.weight = 23;
this.age = 13;
} public Cat(String name, int age){
this.age = 2;
this.name = "Henry";
this.weight = 13;
this.color = "red";
}
public static void main(String[] args) {
}
}