Show errors in console
[phpeclipse.git] / net.sourceforge.phpeclipse.debug.core / src / net / sourceforge / phpdt / internal / debug / core / PHPDBGBase.java
index a4ff01f..f72c52a 100644 (file)
@@ -65,6 +65,18 @@ public class PHPDBGBase {
        public static final int BPS_ENABLED             = 2;
        public static final int BPS_UNRESOLVED  = 0x100;
 
+       public static final int E_ERROR                         = (1<<0L);
+       public static final int E_WARNING                       = (1<<1L);
+       public static final int E_PARSE                         = (1<<2L);
+       public static final int E_NOTICE                        = (1<<3L);
+       public static final int E_CORE_ERROR            = (1<<4L);
+       public static final int E_CORE_WARNING          = (1<<5L);
+       public static final int E_COMPILE_ERROR         = (1<<6L);
+       public static final int E_COMPILE_WARNING       = (1<<7L);
+       public static final int E_USER_ERROR            = (1<<8L);
+       public static final int E_USER_WARNING          = (1<<9L);
+       public static final int E_USER_NOTICE           = (1<<10L);
+
        public PHPDBGBase() {
        }