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

com.oracle.truffle.api.vm.IncompleteSourceException Maven / Gradle / Ivy

package com.oracle.truffle.api.vm;

import java.io.IOException;

/**
 * Indicates that the provided source was incomplete and requires further text to be executed.
 */
@SuppressWarnings("serial")
public class IncompleteSourceException extends IOException {

    public IncompleteSourceException() {
        super();
    }

    public IncompleteSourceException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy