You are here

class PaymentException in Payment 7

A Payment-related exception.

Hierarchy

Expanded class hierarchy of PaymentException

File

./payment.classes.inc, line 1229
The API and related functions for executing and managing payments.

View source
class PaymentException extends Exception {

  /**
   * {@inheritdoc}
   */
  function __construct($message = '', $code = 0, Exception $previous = NULL) {
    parent::__construct($message, $code, $previous);
    payment_debug($this
      ->getMessage(), $this
      ->getFile(), $this
      ->getLine());
  }

}

Members