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

PromotedTweetPutNotAllowedException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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
}