Completed
Push — master ( 7209c8...b579d6 )
by Hector
04:15
created

PromotedTweetPutNotAllowedException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: hborras
5
 * Date: 4/01/18
6
 * Time: 22:34
7
 */
8
9
namespace Hborras\TwitterAdsSDK\TwitterAds\Errors\PromotedTweet;
10
11
12
use Exception;
13
14
class PromotedTweetPutNotAllowedException extends Exception
15
{
16
    public function __construct()
17
    {
18
        parent::__construct(500, 'PromotedTweetPutNotAllowedException');
19
    }
20
}