blackbirdchess-service-results/src/Exceptions/IncompatibleReaderException.php
Jeroen De Meerleer 5ac0629db5
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:14:49 +01:00

31 lines
795 B
PHP

<?php
/**
* Exception IncompatibleReaderException
*
* Exception to be raised when a reader is used that is incompatible
*
* @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\Import\Exceptions;
use Blackbirdchess\Service\Results\Exceptions\LibpairtwoException;
/**
* Exception IncompatibleReaderException
*
* Exception to be raised when a reader is used that is incompatible
*
* @author Jeroen De Meerleer <schaak@jeroened.be>
* @category Main
* @package Libpairtwo
* @copyright Copyright (c) 2018-2019 Jeroen De Meerleer <schaak@jeroened.be>
*/
class IncompatibleReaderException extends LibpairtwoException
{
}