This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ConvertError(ValueError): | |
message = 'Whoops - one of the values you entered cannot be converted to something that will work for these calculations. Try this again.' | |
class BadStuff(BaseException): | |
message = 'Something went wrong with this calculation. Maybe try passing in new values.' | |
class Zero(ZeroDivisionError): | |
message = 'Yeah, dividing with a 0 in the mix does not work.' |