blackbirdchess-service-results/src/Exceptions/LibpairtwoException.php
Jeroen De Meerleer bbe6975670
Initial Commit
This commit:
- Creates the repository
- Forks libpairtwo
- Removes the unrelated files
- Moves the namespaces to a new namespace
- Uses native 8.1 enums instead of a thirdparty-library
2023-01-12 19:18:00 +01:00

31 lines
698 B
PHP

<?php
/**
* Exception LibpairtwoException
*
* General exception when something goes wrong with libpairtwo
*
* @author Jeroen De Meerleer <schaak@jeroened.be>
* @category Main
* @package Libpairtwo
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
*/
namespace Blackbirdchess\Service\Results\Exceptions;
use Exception;
/**
* Exception LibpairtwoException
*
* General exception when something goes wrong with libpairtwo
*
* @author Jeroen De Meerleer <schaak@jeroened.be>
* @category Main
* @package Libpairtwo
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
*/
class LibpairtwoException extends Exception
{
}