Methods of easily debugging/fixing the scripts with known facts - Part2
Version mismatch of Installed Java, compiled Java project and Eclipse IDE. I have listed issues by high priority 1) Eclipse - 32 bit , Java 8 64 bit 2) Eclipse - 32 bit, Java 7 32 bit but the project is mapped to Java 6 path 3) Wrongly pointed out of the Java bin path in the Path environment variable led to not able to open Eclipse IDE. If we try to open, it will throw exit code 13. 4) java.lang.UnsupportedClassVersionError or Unsupported major.minor version 52.0 Happens because of using Higher JDK during compile time and lower JDK during runtime. The issue 1 and 4 can be fixed by upgrading/degrading of either Eclipse or Java.The reported ...