Page MenuHomec4science

DiffusionRefNotFoundException.php
No OneTemporary

File Metadata

Created
Tue, Jul 23, 06:01

DiffusionRefNotFoundException.php

<?php
final class DiffusionRefNotFoundException extends Exception {
private $ref;
public function setRef($ref) {
$this->ref = $ref;
return $this;
}
public function getRef() {
return $this->ref;
}
}

Event Timeline