Remove unused exception

This commit is contained in:
Dennis Eichhorn 2017-11-17 13:38:07 +01:00
parent 543357c804
commit 3251816b80

View File

@ -1,35 +0,0 @@
<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace phpOMS\Utils\TaskSchedule;
/**
* Filesystem class.
*
* Performing operations on the file system
*
* @category System
* @package phpOMS\Utils\TaskSchedule
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
class InvalidTaskParameterException extends \UnexpectedValueException
{
public function __construct($message, $code = 0, \Exception $previous = null)
{
parent::__construct('The parameter "' . $message . '" is not valid for this task.', $code, $previous);
}
}