Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Hint: You can adjust the default video playback speed in your account settings.
Hint: You can set your subtitle preferences in your account settings.
Sorry! Looks like there’s an issue with video playback 🙁 This might be due to a temporary outage or because of a configuration issue with your browser. Please refer to our video player troubleshooting guide for assistance.

Handle Exceptions

00:00 All right, you were mentioning that to actually be more close to the question again, you would like to introduce the try and except block again. Yeah, and instead of putting it into validate(), where you’re raising the exception, you generally want to put this exception handling in your main function, so maybe in the top-level function that calls the other functions. As you saw before, like, the exception message bubbles up, so there’s no issue here.

00:27 The error is going to appear. So I can say try to validate, and

00:36 then you can catch the exception. So we can say except,

00:41 and because we have this nice descriptive error name, we can also be specific about what error that you’d be catching here, so I can say except SourceEqualsTargetError. Then you want to say print(

00:57 "An error occurred."). This is probably not a great error message, but

01:01 I don’t have a ton of—well, I guess we do have some context. "Source and target are the same." Yeah. Right. And else, if we don’t run into any error, then print("Done").

01:19 So this is where you could put the exception handling, not inside of the same function where you’re raising it, but in the calling function, and now your program wouldn’t quit, because You’re catching the exception instead of exiting the program when it gets thrown.

01:34 So if I run this again with both our test runs here,

01:39 then you can that on the first run—in the terminal, you can see that the Run #1 succeeded, and "Done" got printed. And in the Run #2, the exception got raised, as you saw before.

01:51 SourceEqualsTargetError got raised, and now in the main() function, you are handling the error. You’re catching it with the except statement here and then printing out a different message. In this case, "Source and target are the same". So one thing that’s a good idea is to actually handle your error that you have because if you would only raise an error and you have this code that we have isolated right now in a bigger application, then your application would crash with this error.

02:21 So introducing try and except like Martin did here is a good idea. And then you can do whatever you want with this error. So here in line 12, we just print("Source and target are the same") and you could do something else.

02:34 So maybe you could ask the user to change the target or change the source to actually make it work. And the other thing which is also important to note is in line 11, to be specific about the error that you want to raise.

02:49 So if you only use except, then maybe validate() raises another error because your your code is not working, and you just generally print "Source and target are the same." And that’s not what you want.

03:01 What you want is you want to specifically catch the SourceEqualsTargetError here and then print this message. So with this code in place, I’m quite happy how everything looks. I don’t know, what do you think, Martin?

03:15 I think I’m happy. I don’t really see anything that bothers me at the moment where I would want to go in and refactor more. So yeah. Perfect. So I would say we are finished with this, and let’s wrap up the course with a summary.

Become a Member to join the conversation.