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