SilverStream
Application Server 3.5

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

Constructor Summary
AgoUnrecoverableSystemException()
           
 
Methods inherited from class com.sssw.rt.util.AgoException
copyTo, getExceptionHTML, getExceptionMessage, getExceptionMessage, getHTML, getMessage, getMessage, getParentException, printStackTrace, printStackTrace, printStackTrace, setHTML
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods implemented from interface com.sssw.rt.util.AgiParentedException
getExceptionParent
 

Constructor Detail

AgoUnrecoverableSystemException

public AgoUnrecoverableSystemException()

SilverStream
Application Server 3.5