您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IntegrityException.php 546B

12345678910111213141516171819202122232425
  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\db;
  8. /**
  9. * Exception represents an exception that is caused by violation of DB constraints.
  10. *
  11. * @author Alexander Makarov <sam@rmcreative.ru>
  12. * @since 2.0
  13. */
  14. class IntegrityException extends Exception
  15. {
  16. /**
  17. * @return string the user-friendly name of this exception
  18. */
  19. public function getName()
  20. {
  21. return 'Integrity constraint violation';
  22. }
  23. }