Files
grade-program/exceptions.py
T
2019-08-02 18:54:27 +02:00

22 lines
344 B
Python

class NotANumberException(Exception):
pass
class SubjectNotExistingException(Exception):
pass
class CategoryNotExistingException(Exception):
pass
class WrongCaseException(Exception):
pass
def convertible(string):
try:
float(string)
return True
except ValueError:
raise NotANumberException