I did the code. I even consulted other questions and I can't figure out why it's not accepting this. What am I missing?
package com.codegym.task.task02.task0213;
/*
Pets need people
*/
public class Solution {
public static void main(String[] args) {
//write your code here
Woman woman = new woman();
Cat cat = new cat();
Dog dog = new dog();
Fish fish = new fish();
cat.owner = woman;
dog.owner = woman;
fish.owner = woman;
}
public static class Cat {
public Woman owner;
}
public static class Dog {
public Woman owner;
}
public static class Fish {
public Woman owner;
}
public static class Woman {
}
}