Skip to content

Commit bbfde93

Browse files
committed
* renamed exception classes
* improved error formatting in console * prepared modules for partitioning
1 parent 0183c84 commit bbfde93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Codeception/Module/Sequence.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace Codeception\Module;
33

4-
use Codeception\Exception\Module;
4+
use Codeception\Exception\ModuleException;
55
use Codeception\TestCase;
66

77
/**
@@ -64,5 +64,5 @@ public function _after(TestCase $t)
6464
if (!function_exists('sq')) {
6565
require_once __DIR__ . '/../Util/sq.php';
6666
} else {
67-
throw new Module('Codeception\Module\Sequence', "function 'sq' already defiend");
67+
throw new ModuleException('Codeception\Module\Sequence', "function 'sq' already defiend");
6868
}

0 commit comments

Comments
 (0)