Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLaxmikanta Nayak
185 PointsThis is wrong , it is not correct
How can someone call the Connectionbuilder constructor from another class because it is an innerClass and whenever i am trying to do the same i am getting error that this class Connectionbuilder is not available create a new class.
Please clarify my this doubt .
Thanks in advance
2 Answers
Alexander Nikiforov
Java Web Development Techdegree Graduate 22,175 PointsPlease paste the code that is causing the error. I cannot reproduce it.
Inner class can be easily called when it is declared just like in challenge public static class
and imported import com.teamtreehouse.builder.Connection.ConnectionBuilder
After that you can use: Connection c = new ConnectionBuilder
...
Laxmikanta Nayak
185 PointsGot it , i have to import it right as i was not using any IDE that's why i got that error. Thanks a lot Alexander Nikiforov