Exception Launching Yiic Message

Hi all,

When I launch yiic message I have an exception but I don"t know why

exception ‘CException’ with message ‘Property “MessageCommand.class2id” is not defined.’ in /var/www/yii/framework/base/CComponent.php:131

My config seems to be good though.


<?php

/**

 * This is the configuration for generating message translations

 * for the Yii framework. It is used by the 'yiic message' command.

 */

return array(

        'sourcePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',

        'messagePath'=>dirname(__FILE__),

        'languages'=>array('en'), // according to your translation needs

        'fileTypes'=>array('php'),

        'overwrite'=>false,

        'removeOld'=>true,

        'sort'=>true,

        'exclude'=>array(

                '.svn',

                '.gitignore',

                'yiilite.php',

                'yiit.php',

                '/i18n/data',

                '/messages',

                '/vendors',

                '/web/js',

        ),

);

Any Idea ?