Changeset 95

Show
Ignore:
Timestamp:
03/05/07 17:51:13 (2 years ago)
Author:
mikey
Message:

AttributeDefinition::getSetterMethod() required $tag

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/XJConf/converters/AbstractObjectValueConverter.php

    r94 r95  
    6464                $method->invoke($instance, $val); 
    6565            } catch (ReflectionException $re) { 
    66                 throw new ValueConversionException('Could not set attribute "' . $att->getName() . '" of "' . $this->getType() . '" using "' . $att->getSetterMethod() . '()", exception message: "' . $re->getMessage() . '".'); 
     66                throw new ValueConversionException('Could not set attribute "' . $att->getName() . '" of "' . $this->getType() . '" using "' . $att->getSetterMethod($tag) . '()", exception message: "' . $re->getMessage() . '".'); 
    6767            } 
    6868        }