feat: add exception for template apply errors in data-interface

This commit is contained in:
Freek van de Ven 2024-07-23 15:56:53 +02:00 committed by FlutterJoey
parent 9dcb3950df
commit 3e2cc1d9f5

View file

@ -7,6 +7,9 @@ class AvailabilityNotFoundException implements Exception {}
/// Exception thrown when the requested template can not be found
class TemplateNotFoundException implements Exception {}
/// Exception thrown when the requested template can not be applied
class TemplateApplyException implements Exception {}
/// A base interface that defines the communication from the availability user
/// story to its persistance solution.
///