001 package sharpster.common;
002
003 /**
004 * <p>Title: </p>
005 * <p>Description: </p>
006 * <p>Copyright: Copyright (c) 2003</p>
007 * <p>Company: </p>
008 * @author not attributable
009 * @version 1.0
010 */
011
012 public interface SubError {
013 public static final int NO_ERROR = 0x00;
014 public static final int USER_NOT_IN_GROUP = 0x01;
015 public static final int USER_ALREADY_IN_GROUP = 0x02;
016 public static final int NO_SUCH_GROUP = 0x03;
017 public static final int GROUP_EXIST = 0x04;
018 public static final int SYNTAX_ERROR = 0x05;
019 public static final int UNAUTHORISED_CHANGE_IN_FILE = 0x06;
020 }