Почему не проходит ВТОРОЕ условие? В ЭТОМ РЕШЕНИИ КОНСТРУКТОРЫ НЕПРАВИЛЬНЫЕ
package com.javarush.task.jdk13.task05.task0517;
/*
Конструируем котиков
*/
public class Cat {
String name;
int age;
int weight;
String address;
String color;
public Cat(String name){
this.name = name;
age = 1;
weight =2;
color = "red";
}
public Cat(String name,int weight , int age){
this.name = name;
this. weight = weight;
this.age = age;
color = "red";
}
public Cat(int weight, String color){
this.weight = weight;
this.color = color;
age = 1;
}
public static void main(String[] args) {
}
}

