選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

26 行
526B

  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\base;
  8. /**
  9. * ViewNotFoundException represents an exception caused by view file not found.
  10. *
  11. * @author Alexander Makarov
  12. * @since 2.0.10
  13. */
  14. class ViewNotFoundException extends InvalidParamException
  15. {
  16. /**
  17. * @return string the user-friendly name of this exception
  18. */
  19. public function getName()
  20. {
  21. return 'View not Found';
  22. }
  23. }