Java - Constructors
Identify the error in the following Java code snippet:
class Box {
int length;
Box() {
this(5);
}
Box(int length) {
length = length;
}
}