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 trialAdrià Illa
Courses Plus Student 62 PointsHandle an exeption
Can't do this...
// assetManager, assetName, and fileToWrite have been initialized elsewhere
InputStream in = assetManager.open(assetName);
FileOutputStream out = new FileOutputStream(fileToWrite);
copyFile(in, out);
Kourosh Raeen
23,733 PointsHi Adria - I agree with Jennifer Nordell. Now, if you don't know anything about handling exceptions take a look at this video:
https://teamtreehouse.com/library/java-objects/harnessing-the-power-of-objects/exceptions
After watching the video, give the challenge a try and if it doesn't pass then post what you've tried here.
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherI'd prefer to know what you've tried that's failed It will be a much better learning experience for you in the long run (imho) if we can help you work out where you're going wrong.