This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Api/ApiMissingArgumentException.php
2014-05-03 22:18:41 +02:00

8 lines
204 B
PHP

<?php
class ApiMissingArgumentException extends SimpleException
{
public function __construct($argumentName)
{
parent::__construct('Expected argument "' . $argumentName . '" was not specified');
}
}