Whenever I compile the java package through this code
javac -cp ch03.stacks StackDriver.java ArrayStack.java BoundedStackInterface.java StackInterface.java StackUnderflowException.java StackOverflowException.java
It compiles correctly but when I use this command on the driver class
java StackDriver
It responds with this error
Error: Could not find or load main class StackDriver
Why can't I run the main class in the Driver? And what should I do in order to run the main class?