Уже решил данную проблему
Ошибка здесь
/**
* Determines which view file should be used.
* @param string view name (either 'exception' or 'error')
* @param integer HTTP status code
* @return string view file path
*/
protected function getViewFile($view,$code)
{
$viewPaths=array(
Yii::app()->getTheme()===null ? null : Yii::app()->getTheme()->getSystemViewPath(),
Yii::app() instanceof CWebApplication ? Yii::app()->getSystemViewPath() : null,
YII_PATH.DIRECTORY_SEPARATOR.'views',
);
................
Меняем
Yii::app()->getTheme()===null ? null : Yii::app()->getTheme()->getSystemViewPath()
на null и все работает, но не будет поддержки theme.
Пробую дальше.....