Package logisticspipes.proxy

Examples of logisticspipes.proxy.VersionNotSupportedException


    } catch(Exception e) {
      e.printStackTrace();
    }
    if(BCVersion != null && !BCVersion.equals("@VERSION@")) {
      if(!BCVersion.contains("6.1")) {
        throw new VersionNotSupportedException("BC", BCVersion, "6.1.5", "");
      } else if(BCVersion.contains("6.1.0") || BCVersion.contains("6.1.1") || BCVersion.contains("6.1.2") || BCVersion.contains("6.1.3") || BCVersion.contains("6.1.4")) {
        throw new VersionNotSupportedException("BC", BCVersion, "6.1.5", "");
      } else if(!BCVersion.contains("6.1.5")) {
        LogisticsPipes.log.error("The BC version you are using is untested with this LP version. It may work but it could also destroy your world. Use at your own risk. Recommanded BC version for this LP version is BC 6.1.5");
      }
    } else {
      LogisticsPipes.log.info("Couldn't check the BC Version.");
View Full Code Here

TOP

Related Classes of logisticspipes.proxy.VersionNotSupportedException

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.