All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.openfin.desktop.DesktopIOException Maven / Gradle / Ivy

There is a newer version: 11.0.2
Show newest version
package com.openfin.desktop;

/**
 * Network or File IO Exception from Adapter
 *
 * @author wche
 * @since 12/8/14
 */
public class DesktopIOException extends Exception {

    public DesktopIOException(String error) {
        super(error);
    }

    public DesktopIOException(Exception ex) {
        super(ex);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy