mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
10 lines
189 B
PHP
10 lines
189 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionSetupException extends AphrontUsageException {
|
||
|
|
||
|
public function __construct($message) {
|
||
|
parent::__construct('Diffusion Setup Exception', $message);
|
||
|
}
|
||
|
|
||
|
}
|