LifecycleException
111112113114115116117118
{ throw ce; } catch (Exception e) { throw new LifecycleException(CoreMessages.failedToStartInboundEndpoint(this), e, this); } }
132133134135136137138139
((Stoppable)polledMp).stop(); } } catch (Exception e) { throw new LifecycleException(CoreMessages.failedToStopInboundEndpoint(this), e, this); } }
283284285286287288289290
295296297298299300301302
{ getConnector().unregisterListener(this, flowConstruct); } catch (Exception e) { throw new LifecycleException(CoreMessages.failedToStartInboundEndpoint(this), e, this); } }
96979899100101102103
{ workManager.scheduleWork(this, WorkManager.INDEFINITE, null, workListener); } catch (WorkException e) { throw new LifecycleException(e, this); } }
5758596061626364
connector.start(); started = true; } catch (Exception e) { throw new LifecycleException(e, this); } }
180181182183184185186187
consumer.setMessageListener(this); } } catch (JMSException e) { throw new LifecycleException(e, this); } }
195196197198199200201202
consumer.setMessageListener(null); } } catch (JMSException e) { throw new LifecycleException(e, this); } }
265266267268269270271272
contextHolder.start(); } } catch (Exception e) { throw new LifecycleException(CoreMessages.failedToStart("Jetty Http Receiver"), e, this); } }
288289290291292293294295
connectorRef.stop(); } } catch (Exception e) { throw new LifecycleException(CoreMessages.failedToStop("Jetty Http Receiver"), e, this); } }