| |
|
| java.lang.Object com.ibatis.sqlmap.engine.scope.ErrorContext
ErrorContext | public class ErrorContext (Code) | | An error context to help us create meaningful error messages
|
getActivity | public String getActivity()(Code) | | Getter for the activity that was happening when the error happened
- the activity |
getCause | public Throwable getCause()(Code) | | Getter for the cause of the error
- the cause |
getMoreInfo | public String getMoreInfo()(Code) | | Getter for more information about the error
- more information |
getObjectId | public String getObjectId()(Code) | | Getter for the object ID where the problem happened
- the object id |
getResource | public String getResource()(Code) | | Getter for the resource causing the problem
- the resource |
reset | public void reset()(Code) | | Clear the error context
|
setActivity | public void setActivity(String activity)(Code) | | Getter for the activity that was happening when the error happened
Parameters: activity - - the activity |
setCause | public void setCause(Throwable cause)(Code) | | Setter for the cause of the error
Parameters: cause - - the cause |
setMoreInfo | public void setMoreInfo(String moreInfo)(Code) | | Setter for more information about the error
Parameters: moreInfo - - more information |
setObjectId | public void setObjectId(String objectId)(Code) | | Setter for the object ID where the problem happened
Parameters: objectId - - the object id |
setResource | public void setResource(String resource)(Code) | | Setter for the resource causing the problem
Parameters: resource - - the resource |
|
|
|