blob: c10f8e94959ab1ddc118848a8df34c1656e651eb [file] [log] [blame]
package com.googlecode.prolog_cafe.exceptions;
public class HaltException extends SystemException {
private final int status;
public HaltException(int status) {
super("halt(" + status + ")");
this.status = status;
}
public int getStatus() {
return status;
}
}