view truffle/com.oracle.truffle.api.vm/src/com/oracle/truffle/api/vm/IncompleteSourceException.java @ 22502:d2b4fe945c23

Add missing Truffle boundary
author Christian Wimmer <christian.wimmer@oracle.com>
date Wed, 16 Dec 2015 15:32:23 -0800
parents 83d605e7fa57
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);
    }

}