mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-01 00:34:32 +02:00
update PEAR
This commit is contained in:
parent
1861358415
commit
071df91de0
64 changed files with 3872 additions and 2100 deletions
43
system/autoload/PEAR2/Net/RouterOS/ParserException.php
Normal file
43
system/autoload/PEAR2/Net/RouterOS/ParserException.php
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* RouterOS API client implementation.
|
||||
|
||||
*
|
||||
* RouterOS is the flag product of the company MikroTik and is a powerful router software. One of its many abilities is to allow control over it via an API. This package provides a client for that API, in turn allowing you to use PHP to control RouterOS hosts.
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @category Net
|
||||
* @package PEAR2_Net_RouterOS
|
||||
* @author Vasil Rangelov <boen.robot@gmail.com>
|
||||
* @copyright 2011 Vasil Rangelov
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version 1.0.0b6
|
||||
* @link http://pear2.php.net/PEAR2_Net_RouterOS
|
||||
*/
|
||||
/**
|
||||
* The namespace declaration.
|
||||
*/
|
||||
namespace PEAR2\Net\RouterOS;
|
||||
|
||||
/**
|
||||
* Base of this class.
|
||||
*/
|
||||
use DomainException;
|
||||
|
||||
/**
|
||||
* Exception thrown when a value can't be parsed properly.
|
||||
*
|
||||
* @category Net
|
||||
* @package PEAR2_Net_RouterOS
|
||||
* @author Vasil Rangelov <boen.robot@gmail.com>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @link http://pear2.php.net/PEAR2_Net_RouterOS
|
||||
*/
|
||||
class ParserException extends DomainException implements Exception
|
||||
{
|
||||
const CODE_DATETIME = 1;
|
||||
const CODE_DATEINTERVAL = 2;
|
||||
const CODE_ARRAY = 3;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue