01: package com.teamkonzept.lib;
02:
03: /**
04: This interface defines all errorcodes for Configuration based exceptions
05:
06: */
07: public interface ConfigurationErrorCodes extends ErrorCodes {
08: public int NO_PROPERTY_FILE = CONFIGURATION + 1;
09: public int OUT_OF_MEMORY = CONFIGURATION + 2;
10: int NO_UPLOAD_INI = CONFIGURATION + 3;
11: }
|