botamp/botamp-php

View on GitHub
lib/Botamp/Exceptions/NotFound.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Botamp\Exceptions;

class NotFound extends Base
{
    public function __construct()
    {
        parent::__construct("The resource doesn't exist.");
    }
}