- important curl and wget improvements - initial test coverage - setters and getters in Request classes - namespace fixes - some additions in README - docblocks and code-style
12 lines
135 B
PHP
12 lines
135 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PmConverter\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class EmptyHttpVerbException extends Exception
|
|
{
|
|
}
|