view truffle/com.oracle.truffle.api.vm/src/com/oracle/truffle/api/vm/IncompleteSourceException.java @ 22316:83d605e7fa57

Add incomplete source exception.
author Christian Humer <christian.humer@oracle.com>
date Tue, 20 Oct 2015 00:14:37 +0200
parents
children
line wrap: on
line source

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);
    }

}