Package de.dermoba.srcp.common.exception

Examples of de.dermoba.srcp.common.exception.SRCPNoDataException


    public GLData(String data) throws SRCPNoDataException {
        String[] tokens = data.split(" ");

        if (tokens.length < 9) {
            throw new SRCPNoDataException();
        }

        timestamp = Double.parseDouble(tokens[0]);
        bus = Integer.parseInt(tokens[3]);
        address = Integer.parseInt(tokens[5]);
View Full Code Here

TOP

Related Classes of de.dermoba.srcp.common.exception.SRCPNoDataException

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.