Completed
Push — test ( d49b33...eefe29 )
by Temitope
02:38
created

TableNotCreatedException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 4
Bugs 0 Features 2
Metric Value
wmc 1
c 4
b 0
f 2
lcom 0
cbo 0
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A checkTableNotCreatedException() 0 4 1
1
<?php
2
3
/**
4
 * @package  Laztopaz\potato-ORM
5
 * @author   Temitope Olotin <[email protected]>
6
 * @license  <https://opensource.org/license/MIT> MIT
7
 */
8
9
namespace Laztopaz\potatoORM;
10
11
use Exception;
12
13
class TableNotCreatedException extends Exception {
14
15
	public static function checkTableNotCreatedException($message)
16
	{
17
		return new static($message);
18
	}
19
20
}