Package com.skype.connector

Examples of com.skype.connector.UnsupportedArchitectureException


     * @return instance.
     */
    public static synchronized Connector getInstance() {
      String osArch = System.getProperty("os.arch");
    if (osArch.contains("64")) {
        throw new UnsupportedArchitectureException(
            "Skype Java Api doesn't support running under 64bit architectures under Mac OSX. " +
            "You may try running with 'java -d32' if your system has java 32bit installed."
            );
      }
        if(_instance == null) {
View Full Code Here

TOP

Related Classes of com.skype.connector.UnsupportedArchitectureException

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.