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 trial

Android Android Data Persistence Introduction to Data Persistence Handling an Exception

Handle an exeption

Can't do this...

CodeChallenge.java
// assetManager, assetName, and fileToWrite have been initialized elsewhere

InputStream in = assetManager.open(assetName);
FileOutputStream out = new FileOutputStream(fileToWrite);
copyFile(in, out);
Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

I'd prefer to know what you've tried that's failed :smiley: 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.

Kourosh Raeen
Kourosh Raeen
23,733 Points

Hi 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.