Package com.coherentlogic.coherent.data.model.demo.exceptions

Examples of com.coherentlogic.coherent.data.model.demo.exceptions.IORuntimeException


    private static void open(URI uri) {
        if (Desktop.isDesktopSupported()) {
            try {
                Desktop.getDesktop().browse(uri);
            } catch (IOException ioException) {
                throw new IORuntimeException(
                    "Unable to open the uri " + uri, ioException);
            }
        } else {
            log.warn("The desktop is not supported so the uri '" + uri +
                "' will not be browsed.");
View Full Code Here

TOP

Related Classes of com.coherentlogic.coherent.data.model.demo.exceptions.IORuntimeException

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.