1 21 22 package org.apache.derby.iapi.services.context; 23 24 import org.apache.derby.iapi.error.StandardException; 25 26 57 public interface Context 58 { 59 63 public ContextManager getContextManager(); 64 65 79 public String getIdName(); 80 81 114 public void cleanupOnError(Throwable error) 115 throws StandardException; 116 117 120 public void pushMe(); 121 122 125 public void popMe(); 126 127 142 public boolean isLastHandler(int severity); 143 } 144 | Popular Tags |