Class WallServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.webcenter.framework.service.BaseWCServiceException
oracle.webcenter.peopleconnections.wall.WallServiceException
- All Implemented Interfaces:
Serializable
@Exported
public class WallServiceException
extends oracle.webcenter.framework.service.BaseWCServiceException
This class is the
Exception
class for all Wall Service
related exceptions raised. It extends standard exception class.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionWallServiceException
(String resBundleClassName, String resourceKey, Object[] args, Throwable cause, ClassLoader classLoader) Construct a Wall service exception with a complete set of parameters and explicit class loader. -
Method Summary
Methods inherited from class oracle.webcenter.framework.service.BaseWCServiceException
getCause, getLocalizedMessage, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WallServiceException
public WallServiceException(String resBundleClassName, String resourceKey, Object[] args, Throwable cause, ClassLoader classLoader) Construct a Wall service exception with a complete set of parameters and explicit class loader. Class loader parameter may be neccesary for cases when the Spaces Exception implemetation is loaded in one name space and the actual resource bundle is in a different name space. In such cases, get the current classloader from the calling class and pass it as argument to avoid missing resource bundle exception.- Parameters:
resBundleClassName
- the fully qualified name of the resource bundle with the error string.resourceKey
- the key of the resource within the resource bundleargs
- optional arguments formatted into the msg via MessageFormatcause
- optional cause of this exceptionclassLoader
- a reference for a class loader
-