| 1 | <?php |
||
| 8 | class ActiveMQSendAckCheckException extends ActiveMQSendReciveAckCheckException |
||
| 9 | { |
||
| 10 | const EXCEPTION_NAME = 'ActiveMQSendAckCheck'; |
||
| 11 | |||
| 12 | const CODE_CAN_NOT_SENT = 4002; |
||
| 13 | const TEXT_CAN_NOT_SENT = 'can\'t send message destination:%s body:%s error:%s'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $destination |
||
| 17 | * @param string $body |
||
| 18 | * @param \Exception $e |
||
| 19 | * |
||
| 20 | * @return self |
||
| 21 | */ |
||
| 22 | 1 | public static function canNotSent($destination, $body, \Exception $e) |
|
| 26 | } |
||
| 27 |