2019-05-27 13:15:28 +02:00
|
|
|
<?php
|
2019-06-19 21:54:19 +02:00
|
|
|
/**
|
|
|
|
* 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>
|
|
|
|
*/
|
2019-05-27 13:15:28 +02:00
|
|
|
|
|
|
|
namespace JeroenED\Libpairtwo\Exceptions;
|
|
|
|
|
2019-06-19 21:54:19 +02:00
|
|
|
/**
|
|
|
|
* 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>
|
|
|
|
*/
|
2019-06-01 16:39:58 +02:00
|
|
|
class IncompatibleReaderException extends LibpairtwoException
|
2019-05-27 13:15:28 +02:00
|
|
|
{
|
2019-06-01 16:39:58 +02:00
|
|
|
}
|