226227228229230231232233
{ profileDao.updateProfile( stored ); } catch ( ContinuumStoreException e ) { throw new ProfileException( e.getMessage(), e ); } }
285286287288289290291292
updateProfileCheckDuplicateName( stored, false ); } catch ( AlreadyExistsProfileException e ) { // normally cannot happend here but anyway we throw the exception throw new ProfileException( e.getMessage(), e ); } }
7475767778798081
stored.setEnvironmentVariables( profile.getEnvironmentVariables() ); profileDao.updateProfile( stored ); } catch ( ContinuumStoreException e ) { throw new ProfileException( e.getMessage(), e ); } }
104105106107108109110111
138139140141142143144145
{ profileDao.removeProfile( getProfile( profileId ) ); } catch ( Exception e ) { throw new ProfileException( "Cannot remove the profile", e ); } }
168169170171172173174175
// really ignore ? return null; } catch ( ContinuumStoreException e ) { throw new ProfileException( e.getMessage(), e ); } }
186187188189190191192193
204205206207208209210211
222223224225226227228229
281282283284285286287288