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

C# C# Objects Inheritance Throwing Exceptions

Code is not working

What is wrong in this?

Program.cs
int value = int.Parse(Console.ReadLine());
try
{
    if(value<0 || value>20)
        throw new Exception();
    else
        Console.WriteLine(string.Format("You entered {0}",value));
}
catch(Exception)
{
    Console.WriteLine("Wrong Value");
}

1 Answer

Dane Parchment
MOD
Dane Parchment
Treehouse Moderator 11,075 Points

What you are doing is way outside the scope of the question. Right now you are exception handling, which is not what the question is asking for, instead the question is asking you to simply throw an error, not handle it. Also it is a poor coding standard to throw your exceptions within the try block.

Anyway back to the question: Just throw the error and you should be fine, don't worry about the try-catch yet.

If you can't figure out how to code it yourself without try-catch, here you go:

int value = int.Parse(Console.ReadLine());
if(value<0 || value>20) {
    throw new Exception();
}else {
   Console.WriteLine(string.Format("You entered {0}",value));
}