Initial commit

This commit is contained in:
2018-11-01 14:10:35 +02:00
commit 85be2dd100
10 changed files with 1608 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace ivuorinen\Curly\Exceptions;
/**
* Class AuthenticationException
* Extends \Exception
*
* @package ivuorinen\Curly\Exceptions
*/
class AuthenticationException extends \Exception
{
}

View File

@@ -0,0 +1,14 @@
<?php
namespace ivuorinen\Curly\Exceptions;
/**
* Class HTTPException
* Extends \Exception
*
* @package ivuorinen\Curly\Exceptions
* @mixin \Exception
*/
class HTTPException extends \Exception
{
}