How can we raise an exception where we define the error message?

raise Exception followed by a string containing the message in parenthesesUsing a print() statementWith the except keyword

raise Exception followed by a string containing the message in parentheses.