1 21 22 package org.apache.derby.shared.common.error; 23 24 32 public interface ExceptionSeverity 33 { 34 38 42 public static final int NO_APPLICABLE_SEVERITY = 0; 43 46 public static final int WARNING_SEVERITY = 10000; 47 51 public static final int STATEMENT_SEVERITY = 20000; 52 56 public static final int TRANSACTION_SEVERITY = 30000; 57 61 public static final int SESSION_SEVERITY = 40000; 62 66 public static final int DATABASE_SEVERITY = 45000; 67 71 public static final int SYSTEM_SEVERITY = 50000; 72 } 73 74 75 | Popular Tags |