Package com.alibaba.sample.petstore.biz

Examples of com.alibaba.sample.petstore.biz.DuplicatedUserException


     */
    public void register(User user) throws DuplicatedUserException {
        User dupuser = userDao.getUserById(user.getUserId());

        if (dupuser != null) {
            throw new DuplicatedUserException("duplicated user: " + user.getUserId());
        }

        userDao.insertUser(user);
    }
View Full Code Here

TOP

Related Classes of com.alibaba.sample.petstore.biz.DuplicatedUserException

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.