APIException.php 323 B

12345678910111213141516171819
  1. <?php
  2. namespace ModulesGarden\ProxmoxAddon\App\Libs\Api\OpenSRS;
  3. class APIException extends \Exception
  4. {
  5. protected $info;
  6. public function __construct($msg, $info)
  7. {
  8. $this->info = $info;
  9. parent::__construct($msg);
  10. }
  11. public function getInfo()
  12. {
  13. return $this->info;
  14. }
  15. }