Skip to content

Commit 1e0ad0e

Browse files
committed
A distinct curl execution exception
1 parent 1e2bc44 commit 1e0ad0e

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

src/Curl.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
namespace F3\CurlWrapper;
33

44
use InvalidArgumentException;
5-
use RuntimeException;
65

76
/**
87
* OOP wrapper for curl_* functions
@@ -104,6 +103,8 @@ public function error()
104103
* @param int $attempts Connection attempts (default is 1)
105104
* @param boolean $useException Throw \RuntimeException on failure
106105
* @return boolean|string
106+
* @throws InvalidArgumentException if the number of attempts is invalid
107+
* @throws CurlException if curl_exec() returned false
107108
*/
108109
public function exec($attempts = 1, $useException = false)
109110
{
@@ -119,7 +120,7 @@ public function exec($attempts = 1, $useException = false)
119120
}
120121
}
121122
if ($useException && (false === $result)) {
122-
throw new RuntimeException(sprintf('Error "%s" after %d attempt(s)', $this->error(), $attempts), $this->errno());
123+
throw new CurlException(sprintf('Error "%s" after %d attempt(s)', $this->error(), $attempts), $this->errno());
123124
}
124125
return $result;
125126
}

src/CurlException.php

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
namespace F3\CurlWrapper;
3+
4+
/**
5+
* Class CurlException
6+
*
7+
* Represents Curl execution error
8+
*/
9+
class CurlException extends \RuntimeException
10+
{
11+
12+
}

test/CurlTest.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22
namespace F3\CurlWrapper;
33

4+
use InvalidArgumentException;
5+
46
function curl_close($h)
57
{
68
CurlTest::$log[] = 'close_'.$h;
@@ -155,7 +157,7 @@ public function testExecError()
155157
}
156158

157159
/**
158-
* @expectedException \RuntimeException
160+
* @expectedException \F3\CurlWrapper\CurlException
159161
* @expectedExceptionMessage Error "omfg" after 2 attempt(s)
160162
* @expectedExceptionCode 666
161163
*/
@@ -179,7 +181,7 @@ public function testExecException()
179181
}
180182

181183
/**
182-
* @expectedException \InvalidArgumentException
184+
* @expectedException InvalidArgumentException
183185
* @expectedExceptionMessage Attempts count is not positive: -42
184186
*/
185187
public function testExecAttemptsNegative()

0 commit comments

Comments
 (0)