1 package com.teamkonzept.lib; 2 3 10 public interface ErrorCodes 11 { 12 13 int UNDEFINED = 0; 14 15 17 18 int HIGH_SEVERITY = 1; 19 20 21 int NORMAL_SEVERITY = 2; 22 23 24 int USER_SEVERITY = 3; 25 26 27 int TEMPORARY_SEVERITY = 4; 28 29 30 31 32 33 int DATABASE = 1000; 34 35 36 int INPUT = 2000; 37 38 39 int CONFIGURATION = 3000; 40 41 42 int INTERNAL = 4000; 43 44 45 int RUNTIME = 5000; 46 47 48 int USER = 6000; 49 50 51 int INVALID_EVENT = INTERNAL + 1; 52 } 53 | Popular Tags |