Package org.nxplanner.domain.repository

Examples of org.nxplanner.domain.repository.RepositoryException


            return HistorySupport.saveEvent(ThreadSession.get(), object, eventType,
                    description, SecurityHelper.getRemoteUserId(ThreadServletRequest.get()), new Date());
        } catch (RuntimeException e) {
            throw e;
        } catch (AuthenticationException e) {
            throw new RepositoryException(e);
        }
    }
View Full Code Here


            if (event != null) {
                event.setTargetObjectId(id);
            }
            return id;
        } catch (Exception e) {
            throw new RepositoryException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.nxplanner.domain.repository.RepositoryException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.