de.systopia.twingle/Civi/Twingle/Shop/Exceptions/LineItemException.php
2024-09-02 15:26:12 +02:00

14 lines
322 B
PHP

<?php
namespace Civi\Twingle\Shop\Exceptions;
use Civi\Twingle\Exceptions\BaseException as BaseException;
/**
* A simple custom exception that indicates a problem within the Line Items
*/
class LineItemException extends BaseException {
public const ERROR_CODE_CONTRIBUTION_NOT_FOUND = "contribution_not_found";
}