'I can't Implement Custom Package
I found No package available error in below program.if any one help me how can i sort this..
I have only one root directory name is Collage and they have 3 different classes ME,IT,CE
When I implement Me class then i got this error
Code :
import Collge.CE;
public class Test{
public static void main(String[] args){
CE c1 =new CE();
}
}
Solution 1:[1]
there is a mistake in your import "Collge.CE;" should be "Collage.CE;"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | gab_stack |
