Browse Source

exceptions was updated, new QueryException added

tags/0.7
Paul Rock 7 years ago
parent
commit
c0c1347033
  1. 5
      src/Exceptions/ClientException.php
  2. 5
      src/Exceptions/ConfigException.php
  3. 13
      src/Exceptions/QueryException.php

5
src/Exceptions/ClientException.php

@ -4,9 +4,10 @@ namespace RouterOS\Exceptions;
/** /**
* Class ClientException * Class ClientException
*
* @package RouterOS\Exceptions * @package RouterOS\Exceptions
* @since 0.4
* @since 0.4
*/ */
class ClientException extends Exception
class ClientException extends \Exception
{ {
} }

5
src/Exceptions/ConfigException.php

@ -4,9 +4,10 @@ namespace RouterOS\Exceptions;
/** /**
* Class ConfigException * Class ConfigException
*
* @package RouterOS\Exceptions * @package RouterOS\Exceptions
* @since 0.4
* @since 0.4
*/ */
class ConfigException extends Exception
class ConfigException extends \Exception
{ {
} }

13
src/Exceptions/QueryException.php

@ -0,0 +1,13 @@
<?php
namespace RouterOS\Exceptions;
/**
* Class QueryException
*
* @package RouterOS\Exceptions
* @since 0.7
*/
class QueryException extends \Exception
{
}
Loading…
Cancel
Save