blob: 7bd37e787e2e9d6655aa685101c73382aae6093e [file] [log] [blame]
package com.googlecode.prolog_cafe.builtin;
import com.googlecode.prolog_cafe.exceptions.PInstantiationException;
import com.googlecode.prolog_cafe.exceptions.TermException;
import com.googlecode.prolog_cafe.lang.*;
/**
* <code>raise_exception/1</code><br>
* @author Mutsunori Banbara (banbara@kobe-u.ac.jp)
* @author Naoyuki Tamura (tamura@kobe-u.ac.jp)
* @version 1.0
*/
public class PRED_raise_exception_1 extends Predicate.P1 {
public PRED_raise_exception_1(Term a1, Operation cont) {
arg1 = a1;
this.cont = cont;
}
public Operation exec(Prolog engine) {
engine.setB0();
Term a1;
a1 = arg1;
a1 = a1.dereference();
if (a1.isVariable())
throw new PInstantiationException(this, 1);
throw new TermException(a1);
}
}