Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

briankabue3
962 PointsPlease tell me why this code is not being passed
Hi,
Not sure where am going wrong with this. Any help will be appreciated
int value = int.Parse(Console.ReadLine());
try {
if (value < 0 || value > 20)
{
throw new System.Exception();
}
} catch {
Console.WriteLine (string.Format("You entered {0}",value));
}
1 Answer

KRIS NIKOLAISEN
54,739 PointsFrom the if statement down in the code provided should be included in the try. Then below this add the catch in which you are instructed to print "Value is out of bounds!"