Merge pull request #20081 from totten/master-authx-defaults
[civicrm-core.git] / CRM / Contribute / Exception / CheckLineItemsException.php
CommitLineData
e122e55d
TO
1<?php
2
3/**
4 * Class CRM_Contribute_Exception_CheckLineItemsException
5 */
6class CRM_Contribute_Exception_CheckLineItemsException extends API_Exception {
2c2c8771 7 const LINE_ITEM_DIFFERRING_TOTAL_EXCEPTON_MSG = "Line item total doesn't match total amount.";
e122e55d
TO
8
9 public function __construct($message = self::LINE_ITEM_DIFFERRING_TOTAL_EXCEPTON_MSG, $error_code = 0, array $extraParams = [], $previous = NULL) {
10 parent::__construct($message, $error_code, $extraParams, $previous);
11 }
12
13}