1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 19:02:41 +01:00
phorge-phorge/src/applications/diffusion/exception/DiffusionSetupException.php
epriestley f88a2b735d Remove spurious "+x" from files that shouldn't have it
Summary: We have a bunch of files with +x that aren't actually executable.
Remove +x from PNGs, etc.
2013-10-05 05:18:17 -07:00

9 lines
189 B
PHP

<?php
final class DiffusionSetupException extends AphrontUsageException {
public function __construct($message) {
parent::__construct('Diffusion Setup Exception', $message);
}
}