# HG changeset patch # User Christian Humer # Date 1445292877 -7200 # Node ID 83d605e7fa57822ac484320fda2542c529948f8d # Parent 518f8ead5d014ceefee1da1a3848ce15cf5075c8 Add incomplete source exception. diff -r 518f8ead5d01 -r 83d605e7fa57 truffle/com.oracle.truffle.api.vm/src/com/oracle/truffle/api/vm/IncompleteSourceException.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/truffle/com.oracle.truffle.api.vm/src/com/oracle/truffle/api/vm/IncompleteSourceException.java Tue Oct 20 00:14:37 2015 +0200 @@ -0,0 +1,19 @@ +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); + } + +}