Python - Custom Exceptions
Identify the error in this custom exception definition:
class CustomError(Exception):
def __init__(self, message):
print(message)