| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class Tiqr_Message_Exception_SendFailure extends Tiqr_Message_Exception |
||
| 25 | { |
||
| 26 | private $_temporary; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor |
||
| 30 | * |
||
| 31 | * @param string $message exception message |
||
| 32 | * @param boolean $temporary temporary failure? |
||
| 33 | * @param Exception $parent parent exception |
||
| 34 | */ |
||
| 35 | public function __construct($message, $temporary=false, Exception $parent=null) |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Is temporary failure? E.g. it's possible to try again later on? |
||
| 43 | * |
||
| 44 | * @return boolean is temporary failure? |
||
| 45 | */ |
||
| 46 | public function isTemporary() |
||
| 51 |