Package com.crystaldecisions.sdk.exception

This package defines the exceptions thrown by BusinessObjects Enterprise.

See:
          Description

Class Summary
SDKBatchException This exception represents multiple SDKExceptions.
SDKException All exceptions within the SDK are mapped to SDKException.
SDKException.ConfigurationError This exception is thrown when an error occurs due to an invalid system property value.
SDKException.ContradictingValues This exception denotes two properties have contradicting values
SDKException.CORBASystem This exception wraps a CORBA system exception generated by the transport layer.
SDKException.CORBAUser This exception wraps a CORBA user exception generated by the underlying transport.
SDKException.DifferentDeployment This exception is thrown when an operation does not support source and target InfoObjects from different deployments, or clusters.
SDKException.DifferentEnterpriseVersion This exception is thrown when an operation doesn't support InfoObjects collections from different versions of BusinessObjects Enterprise.
SDKException.EndOfFile This exception denotes the end of a file has been reached while trying to read from the file.
SDKException.FileRead This exception is thrown when a file could not be read from the FRS.
SDKException.FileWrite This exception is thrown when a file could not be written to the FRS.
SDKException.InvalidArg This exception is thrown when an invalid argument is given to a method.
SDKException.InvalidCMSSyntax This exception denotes the syntax of the CMS name is invalid.
SDKException.InvalidCopyMode This exception is thrown when an invalid copy mode is specified when copying an InfoObject.
SDKException.InvalidObjectID This exception is thrown when the object with a particular ID (SI_ID or SI_CUID) cannot be found on the CMS.
SDKException.InvalidOperation This exception is thrown when trying to perform an invalid or unsupported operation.
SDKException.InvalidPagingIndex This exception is thrown when a failure to get valid page indices information occurs; as a result paging cannot continue.
SDKException.InvalidRightKind This exception is thrown when an invalid right kind is found.
SDKException.NativeError This exception is thrown when a native method call fails.
SDKException.NoRight This exception is thrown when the logged on user does not have sufficient rights to perform the requested operation.
SDKException.NoRightChildren This exception is thrown when the logged on user does not have sufficient rights to perform the requested operation on some of the children objects of a given object.
SDKException.NotImplemented This exception is thrown when there is an indication that an SDK method is not implemented.
SDKException.ObjectNotFound This exception is thrown when the target object cannot be found in the InfoObjects collection.
SDKException.OCAFramework This exception wraps around a OCAFrameworkException.
SDKException.OutOfRange This exception is thrown when an input value is out of the expected range
SDKException.PageServerError This exception is thrown by the PageServerRequester when an error occurs.
SDKException.PluginCategory This exception is thrown when an invalid plugin category is specified.
SDKException.PluginInitialization This exception is thrown when there is a problem initializing a plugin.
SDKException.PluginNotFound This exception is thrown when the plugin manager cannot find a Java version of the plugin.
SDKException.PluginNotFoundAtCMS This exception is thrown when the plugin type is unknown at the CMS.
SDKException.PropertyNotFound This exception is thrown when a property is not found in the IInfoObject.
SDKException.PropertyReadOnly This exception is thrown when an attempt is made to modify a read only property.
SDKException.SameDeployment This exception is thrown when an operation does not support source and target InfoObjects from the same deployment, or cluster.
SDKException.SecurityError This exception is thrown by the authentication plugins when an error occurs.
SDKException.ServiceFailure This exception is thrown when a service cannot be obtained from a server.
SDKException.ServiceNotFound This exception is thrown when an unknown service name is used.
SDKException.StreamRead This exception is thrown when a stream could not be read from the FRS.
SDKException.TimeOut This exception is thrown when an operation times out.
SDKException.Unexpected This exception is a catch-all for any problems that may occur which are not expected to occur under normal conditions.
SDKException.UnexpectedValue This exception is thrown when an IInfoObject property contains an unexpected value.
SDKException.UnsupportedEnterpriseVersion This exception is thrown when a connection is made to an unsupported BusinessObjects Enterprise system.
SDKException.URIFormat This exception is thrown when a URI is not of the proper format.
SDKExceptionsCollector This class is used to collect SDKExceptions potentially thrown in a batch operation related to multiple operations.
SDKServerException This class defines an exception thrown due to a server error.
ServerErrors This class defines server error codes.
 

Exception Summary
SDKException.Serialization This is a wrapper for SDKExceptions thrown during serialization.
SDKRuntimeException This class defines runtime exceptions that the SDK may throw.
SDKRuntimeException.ContradictingValues This exception is thrown when two values in the InfoObject have contradicting values.
SDKRuntimeException.ObjectNotFound This exception is thrown when an unknown object ID is encountered.
SDKRuntimeException.OutOfRange This exception is thrown when an input value is out of the expected range
SDKRuntimeException.PropertyNotFound This exception is thrown when an unknown property ID is encountered.
SDKRuntimeException.SetInherited This exception is thrown when an exception is encountered that results from the SetInherited class.
SDKRuntimeException.UndefinedValue This exception is thrown when an unexpected value is encountered.
SDKRuntimeException.Unexpected This exception describes an unexpected runtime problem.
SDKRuntimeException.UnexpectedValue This exception is thrown when an unexpected value is encountered.
 

Package com.crystaldecisions.sdk.exception Description

This package defines the exceptions thrown by BusinessObjects Enterprise. Exceptions are thrown when an error occurs within the system. To determine the cause of the error, the getCause() and getMessage() methods can be used.

Related Documentation