* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\CreditSlip\Exception; /** * Thrown when requested credit slip/slips are not found */ class CreditSlipNotFoundException extends CreditSlipException { /** * Thrown when no credit slips are found when querying by specific date range */ public const BY_DATE_RANGE = 1; }