com.sssw.rt.util
Class AgoUnrecoverableSystemException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.sssw.rt.util.AgoException
|
+--com.sssw.rt.util.AgoApiException
|
+--com.sssw.rt.util.AgoSystemException
|
+--com.sssw.rt.util.AgoUnrecoverableSystemException
- All Implemented Interfaces:
- AgiParentedException, Serializable
- Direct Known Subclasses:
- AgoServletHandlingException, AgoSystemDatabaseException
- public class AgoUnrecoverableSystemException
- extends AgoSystemException
The subclass of AgoSystemException that indicates that
the exceptional condition is not transient, and retrying
the operation will not help.
Example:
// This code attached to a save button on a form checks to see if data in
// the dataset has changed, and if so, updates the data source.
try {
// If any data changed
if (agData.haveRowsChanged()) {
agData.updateRows();
}
}
catch (AgoUnrecoverableSystemException e) {
agGeneral.showMessage ("Error",
"Error " + e.toString() + " trying to update data. ");
}
- See Also:
- Serialized Form
Methods inherited from class com.sssw.rt.util.AgoException |
copyTo,
getExceptionHTML,
getExceptionMessage,
getExceptionMessage,
getHTML,
getMessage,
getMessage,
getParentException,
printStackTrace,
printStackTrace,
printStackTrace,
setHTML |
AgoUnrecoverableSystemException
public AgoUnrecoverableSystemException()