We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0183c84 commit bbfde93Copy full SHA for bbfde93
1 file changed
src/Codeception/Module/Sequence.php
@@ -1,7 +1,7 @@
1
<?php
2
namespace Codeception\Module;
3
4
-use Codeception\Exception\Module;
+use Codeception\Exception\ModuleException;
5
use Codeception\TestCase;
6
7
/**
@@ -64,5 +64,5 @@ public function _after(TestCase $t)
64
if (!function_exists('sq')) {
65
require_once __DIR__ . '/../Util/sq.php';
66
} else {
67
- throw new Module('Codeception\Module\Sequence', "function 'sq' already defiend");
+ throw new ModuleException('Codeception\Module\Sequence', "function 'sq' already defiend");
68
}
0 commit comments