function PaymentException::__construct in Payment 7
File
- ./
payment.classes.inc, line 1234 - The API and related functions for executing and managing payments.
Class
- PaymentException
- A Payment-related exception.
Code
function __construct($message = '', $code = 0, Exception $previous = NULL) {
parent::__construct($message, $code, $previous);
payment_debug($this
->getMessage(), $this
->getFile(), $this
->getLine());
}