show/hide this revision's text 3 added 2 characters in body

So you can also throw them yourself, and then catch them and know exactly what they mean.

Also: if you're building a class library/framework/api, it's often useful to create a BaseException that everything else other exceptions in the your code inherits inherit from, so that . Then when your code raises exceptions the programmers who are using it can quickly know the source of the exception.

show/hide this revision's text 2 added 276 characters in body

So you can also throw them yourself, and then catch them and know exactly what they mean.

Also: if you're building a class library/framework/api, it's often useful to create a BaseException that everything else in the code inherits from, so that when your code raises exceptions the programmers who are using it can quickly know the source of the exception.

show/hide this revision's text 1

So you can also throw them yourself, and then catch them and know exactly what they mean.