Okay, so i'm fairly new to package statements and have came across an error that i've spent a pretty long time on.
package commonADTs.Stacks.StackADT;
import commonADTs.Exceptions.*;
public class ArrayStack<E> implements StackADT
{
I'm getting the error that it can't find StackADT, but StackADT is located in the same directory, and works when the package statement isn't present. I'm using jgrasp and my classpath should be correct. Basically I don't know why I'm getting the error that it's not able to find the file when it's in the same directory.