| 1 | <?php |
||
| 8 | class ActiveMQReceiveAckCheckException extends ActiveMQSendReciveAckCheckException |
||
| 9 | { |
||
| 10 | const EXCEPTION_NAME = 'ActiveMQReceiveAckCheck'; |
||
| 11 | |||
| 12 | const CODE_CAN_NOT_RECIVE = 4003; |
||
| 13 | const TEXT_CAN_NOT_RECIVE = 'can\'t recive message destination:%s error:%s'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $destination |
||
| 17 | * @param \Exception $e |
||
| 18 | * |
||
| 19 | * @return ActiveMQReceiveAckCheckException |
||
| 20 | */ |
||
| 21 | 2 | public static function canNotReceive($destination, \Exception $e) |
|
| 25 | } |
||
| 26 |