Package lv.odylab.evemanage.application.exception

Examples of lv.odylab.evemanage.application.exception.EveDbException


        } catch (BadRequestException e) {
            logger.error("Caught BadRequestException", e);
            throw new InvalidItemTypeException(String.valueOf(typeID), ErrorCode.INVALID_NAME);
        } catch (RuntimeException e) {
            logger.error("Caught RuntimeException", e);
            throw new EveDbException(e);
        }
    }
View Full Code Here


    public String getEveDbVersion() throws EveDbException {
        try {
            return client.getVersion();
        } catch (Exception e) {
            logger.error("Caught Exception", e);
            throw new EveDbException(e);
        }
    }
View Full Code Here

TOP

Related Classes of lv.odylab.evemanage.application.exception.EveDbException

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.