Create a function check_w_letter(word) that checks if the given word contains the "w" letter. If it does, raise an error called WordError that you should define yourself. If not, return the word.
Tip: You do not have to handle the exception using the try-except block; just raise it.