You are here

class UserpointsInvalidPropertyException in User Points 7.2

This exception is thrown when trying to access an unknown property through the magic UserpointsTransaction::__get() method.

Hierarchy

Expanded class hierarchy of UserpointsInvalidPropertyException

File

./userpoints.transaction.inc, line 1174
Contains the UserpointsTransaction and related classes.

View source
class UserpointsInvalidPropertyException extends Exception {
  function __construct($name, $code = NULL, $previous = NULL) {
    parent::__construct(t('Userpoints transaction does not have a @property property.', array(
      '@property' => $name,
    )), $code, $previous);
  }

}

Members