You are here

private static function cf_error::p_missing_object_property in Common Functionality 7.2

Reports that a given object is missing a property.

Parameters

cf_error_code $error: The error code class object associated with the error.

string $argument_name: The variable name of the argument in question.

1 call to cf_error::p_missing_object_property()
cf_error::missing_object_property in modules/cf_error/classes/cf_error.php
Reports that a given object is missing a property.

File

modules/cf_error/classes/cf_error.php, line 1318
Provides the derror exception class.

Class

cf_error

Code

private static function p_missing_object_property(cf_error_code $error, $argument_name, $property_name) {
  self::p_invalid_variable($error, $argument_name, "The object property '%cf_error-property_name' is missing.", array(
    '%cf_error-property_name' => $property_name,
  ));
}