Package com.pe.pgn.clubpgn.service

Examples of com.pe.pgn.clubpgn.service.UserExistsException


        try {
            return userDao.saveUser(user);
        } catch (DataIntegrityViolationException e) {
            //e.printStackTrace();
            log.warn(e.getMessage());
            throw new UserExistsException("User '" + user.getUsername() + "' already exists!");
        } catch (JpaSystemException e) { // needed for JPA
            //e.printStackTrace();
            log.warn(e.getMessage());
            throw new UserExistsException("User '" + user.getUsername() + "' already exists!");
        }catch (Exception e) {
            log.warn(e.getMessage());
            throw new UserExistsException("User '" + user.getUsername() + "' present problems to save!");
        }
    }
View Full Code Here

TOP

Related Classes of com.pe.pgn.clubpgn.service.UserExistsException

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.