Files
yii/tests/framework/base/NewBeforeValidateBehavior.php
alexander.makarow 1f757cbf53 improved unit tests
2011-02-18 15:25:38 +00:00

9 lines
236 B
PHP

<?php
class NewBeforeValidateBehaviorException extends CException {}
class NewBeforeValidateBehavior extends CModelBehavior {
public function beforeValidate($event) {
throw new NewBeforeValidateBehaviorException();
}
}