blob: 2a841ad54b88a3340213dc6c5b344f43153a332a [file] [log] [blame]
package com.googlecode.prolog_cafe.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);
}
}