I'm starting a main class but when i refer the name back to my other java class, it cannot find the constructor when it is clearly there, in the right file directory.
I'll give you the code from my constructor and the code i'm using in the main class.
Constructor in Java class:
public Box(double height, double width, double depth, boolean full) {
this.height = height;
this.width = width;
this.depth = depth;
this.full = full;
Java main class:
public static void main(String[] args) {
Box firstBox = new Box("This is the first box: ", 411);
Can anyone figure out what is wrong?