1<?php 2 3final class DiffusionRefNotFoundException extends Exception { 4 5 private $ref; 6 7 public function setRef($ref) { 8 $this->ref = $ref; 9 return $this; 10 } 11 12 public function getRef() { 13 return $this->ref; 14 } 15 16} 17 18