libpairtwo/src/Exceptions/IncompatibleReaderException...

29 lines
717 B
PHP
Raw Normal View History

2019-05-27 13:01:53 +02:00
<?php
2020-08-02 21:51:59 +02:00
/**
* Exception IncompatibleReaderException
*
* Exception to be raised when a reader is used that is incompatible
*
2020-08-02 21:51:59 +02:00
* @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:01:53 +02:00
namespace JeroenED\Libpairtwo\Exceptions;
/**
* Exception IncompatibleReaderException
*
* Exception to be raised when a reader is used that is incompatible
*
2020-08-02 21:51:59 +02:00
* @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 21:46:39 +02:00
class IncompatibleReaderException extends LibpairtwoException
2019-05-27 13:01:53 +02:00
{
2019-05-27 21:46:39 +02:00
}