mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
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`.
7 lines
180 B
PHP
7 lines
180 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class EbookSourceSortOrderRequiredException extends AppException{
|
|
/** @var string $message */
|
|
protected $message = 'EbookSource SortOrder required.';
|
|
}
|