mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-10-31 20:56:08 +01:00
28 lines
732 B
PHP
28 lines
732 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 JeroenED\Libpairtwo\Exceptions;
|
|
|
|
/**
|
|
* 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
|
|
{
|
|
}
|