예제 #1
0
파일: PolicyResult.php 프로젝트: jlem/Polyc
 public function exception()
 {
     if ($this->fails()) {
         $exception = $this->policy->getDefaultExceptionClass();
         throw new $exception($this->policy->getError());
     }
 }