Package xbird

Examples of xbird.XBirdError


            if(dbkind == null) {
                throw new IllegalArgumentException("Invalid parameter: " + dbkind);
            }
            final String driver = MAPPINGS.getProperty(dbkind);
            if(driver == null) {
                throw new XBirdError("Could not find JDBC-Driver for: " + dbkind);
            }
            return driver;
        }
View Full Code Here


    public MessageFormatter(InputStream is) {
        final ResourceBundle b;
        try {
            b = new PropertyResourceBundle(is);
        } catch (IOException e) {
            throw new XBirdError(e);
        }
        bundle = convertMap(b);
    }
View Full Code Here

TOP

Related Classes of xbird.XBirdError

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.