web/lib/Exceptions/EbookSourceSortOrderRequiredException.php
Mike Colagrosso 1076c9a77d Remove primary key EbookSourceId
There is a one to many relationship between `Ebook` and `EbookSource`, and we
don't query by `EbookSourceId`. We add a `SortOrder` column to keep the sources
in the same order as specified in `content.opf`.
2024-11-04 13:16:56 -06:00

7 lines
180 B
PHP

<?
namespace Exceptions;
class EbookSourceSortOrderRequiredException extends AppException{
/** @var string $message */
protected $message = 'EbookSource SortOrder required.';
}