コード例 #1
0
ファイル: PolicyResult.php プロジェクト: jlem/Polyc
 public function exception()
 {
     if ($this->fails()) {
         $exception = $this->policy->getDefaultExceptionClass();
         throw new $exception($this->policy->getError());
     }
 }