Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JavaHomeException (0.14 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JavaHomeException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.jvm;
    
    public class JavaHomeException extends RuntimeException {
        public JavaHomeException(String message) {
            super(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 788 bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JavaInfo.java

         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
        File getJavaExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
        File getJavacExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top