1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 13:12:41 +00:00
Arsse/lib/Exception.php
J. King c8274eca74 Moved base exception code to abstract class
This allows differentiating specific and general exceptions in tests; a library-wide trap would have to trap AbstractException
2017-02-11 14:56:02 -05:00

6 lines
No EOL
106 B
PHP

<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync;
class Exception extends AbstractException {
}