LifecycleException
7677787980818283848586
{ throw e; } catch (MuleException e) { throw new LifecycleException(e, this); } finally { setExecutingPhase(null); }
151152153154155156157158159160161
{ throw le; } catch (Exception e) { throw new LifecycleException(e, object); } finally { setExecutingPhase(null); }
37383940414243
} @Override protected MuleEvent handleUnaccepted(MuleEvent event) throws LifecycleException { throw new LifecycleException(CoreMessages.isStopped(getStartableName(startable)), event.getMessage()); }
231232233234235236237238239
if (t instanceof LifecycleException) { throw (LifecycleException) t; } throw new LifecycleException(CoreMessages.failedToInvokeLifecycle(lifecycleMethod.getName(), o), t, this); } }
114115116117118119120121122
{ ((Method) anno.getMember()).invoke(o); } catch (Exception e) { throw new LifecycleException(CoreMessages.failedToInvokeLifecycle( (anno == null ? "null" : anno.getMember().getName()), o), e, this); } }
9293949596979899100101
{ ((Method) anno.getMember()).invoke(o); } catch (Exception e) { throw new LifecycleException(CoreMessages.failedToInvokeLifecycle(anno.getMember().getName(), o), e, this); } } }
159160161162163164165166167168169
{ throw e; } catch (MuleException e) { throw new LifecycleException(CoreMessages.failedToInvokeLifecycle(phase, object), e); } finally { setExecutingPhase(null); }
243244245246247248249250251
111112113114115116117118119
89909192939495969798