| Total Complexity | 1 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 13 | class RemotePlusError extends Exception { | ||
| 14 | |||
| 15 | /** | ||
| 16 | * @var string Starts with !E | ||
| 17 | * @see https://rplus.intdata.com/documentation/RemotePlus_UserGuide.pdf | ||
| 18 | */ | ||
| 19 | public $remotePlusErrorCode; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * RemotePlusError constructor. | ||
| 23 | * @param string $message | ||
| 24 | * @param int $code | ||
| 25 | * @param Throwable|NULL $previous | ||
| 26 | * @param string|NULL $remotePlusErrorCode | ||
| 27 | */ | ||
| 28 |     public function __construct( string $message = "", int $code = 0, Throwable $previous = NULL, string $remotePlusErrorCode=null ) { | ||
| 31 | } | ||
| 32 | } |