Record and summarize Ebook downloads in the DB (#498)

This commit is contained in:
Mike Colagrosso 2025-05-22 10:23:24 -06:00 committed by GitHub
parent 61b8ca27b1
commit 475c437126
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 289 additions and 4 deletions

View file

@ -0,0 +1,7 @@
<?
namespace Exceptions;
class InvalidEbookDownloadSummaryException extends ValidationException{
/** @var string $message */
protected $message = 'EbookDownloadSummary is invalid.';
}