import json


def rule(event):
    if "org.springframework.expression.ExpressionException" in json.dumps(event.to_dict()):
        return True
    return False
