/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.petah.spring.bai;
/**
*
* @author davnei06
*/
public class AIReturnCode {
public static final int NORMAL = 0;
// public static final int UNIT_DOES_NOT_EXIST = -3;
public static final int UNHANDLED_EXCEPTION = 100;
public static final int UNIT_NOT_CACHED = 101;
}