orkhanahmadov/sipgate

View on GitHub
src/Exceptions/ResourcePropertyNotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Orkhanahmadov\Sipgate\Exceptions;

use Exception;

class ResourcePropertyNotFoundException extends Exception
{
    /**
     * ResourcePropertyNotFoundException constructor.
     *
     * @param $property
     */
    public function __construct($property)
    {
        parent::__construct($property.' property not found.');
    }
}