You can use it to raise errors as part of error-checking:
if (a < b):
raise ValueError()
Or handle some errors, and then pass them on as part of error-handling:
Try:
f = open('file.txt', 'r')
except IOError:
# do some processing here
# and then pass the error on
raise