7 lines
248 B
Python
7 lines
248 B
Python
"""passbook core exceptions"""
|
|
from passbook.lib.sentry import SentryIgnoredException
|
|
|
|
|
|
class PropertyMappingExpressionException(SentryIgnoredException):
|
|
"""Error when a PropertyMapping Exception expression could not be parsed or evaluated."""
|