libpairtwo/src/Exceptions/IncompatibleReaderException...

28 lines
732 B
PHP
Raw Normal View History

2019-05-27 13:01:53 +02:00
<?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>
*/
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
*
* @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
}