Completed
Push — master ( 39abe4...b867be )
by Richard
02:31
created

RunException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
namespace Transphporm;
3
class RunException extends \Exception {
4
    public function __construct($operationType, $operationName, \Exception $previous) {
5
        $message = 'TSS Error: Problem carrying out ' . $operationType . ' \'' . $operationName . '\'';
6
7
        parent::__construct($message, 0, $previous);
8
    }
9
}
10