Package sino.service

Examples of sino.service.StationSearchServiceException


        ParamUtility.checkState(null, this.unionStationDao, "unionStationDao");

        try {
            return this.unionStationDao.getUnionStationByKeyword(keyword, pageNumber, pageSize);
        } catch (DaoException e) {
            throw new StationSearchServiceException("Cannot search union station by keywork '" + keyword
                    + "'. Dao exception: " + e.getMessage(), e);
        }
    }
View Full Code Here


        ParamUtility.checkState(null, this.chinaStationDao, "chinaStationDao");

        try {
            return this.chinaStationDao.getChinaStationByKeyword(keyword, pageNumber, pageSize);
        } catch (DaoException e) {
            throw new StationSearchServiceException("Cannot search china station by keyword " + keyword
                    + ". Dao exception: " + e.getMessage(), e);
        }
    }
View Full Code Here

        ParamUtility.checkState(null, this.mongoliaStationDao, "mongoliaStationDao");

        try {
            return this.mongoliaStationDao.getMongoliaStationByKeyword(keyword, pageNumber, pageSize);
        } catch (DaoException e) {
            throw new StationSearchServiceException("Cannot search mongolia station by keyword " + keyword
                    + ". Dao exception: " + e.getMessage(), e);
        }
    }
View Full Code Here

        ParamUtility.checkState(null, this.vietnamStationDao, "vietnamStationDao");

        try {
            return this.vietnamStationDao.getVietnamStationByKeyword(keyword, pageNumber, pageSize);
        } catch (DaoException e) {
            throw new StationSearchServiceException("Cannot search vietnam station by keyword " + keyword
                    + ". Dao exception: " + e.getMessage(), e);
        }
    }
View Full Code Here

TOP

Related Classes of sino.service.StationSearchServiceException

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.