blob: 107a2a803e7300f4c44f48a83d000a74f46c3bf0 [file] [log] [blame]
package jp.ac.kobe_u.cs.prolog.lang;
/**
* Thown when '$print_stack_trace/1' receives an InterruptedException
*
* @author Shawn Pearce (sop@google.com)
*/
public class JavaInterruptedException extends RuntimeException {
public JavaInterruptedException(InterruptedException cause) {
super(cause);
}
}