DecodeException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php namespace Arcanedev\Json\Exceptions\Decode;
2
3
use Arcanedev\Json\Exceptions\JsonException;
4
5
/**
6
 * Class     DecodeException
7
 *
8
 * @package  Arcanedev\Json\Exceptions\Decode
9
 * @author   ARCANEDEV <[email protected]>
10
 */
11
class DecodeException extends JsonException
12
{
13
    /* -----------------------------------------------------------------
14
     |  Properties
15
     | -----------------------------------------------------------------
16
     */
17
18
    /** @var string */
19
    protected $message = 'An unrecognized decoding error was encountered: :last_error_msg';
20
}
21