Package com.cmobilecom.af.model.bean
Class InvalidDataSourceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.cmobilecom.af.util.ExecException
-
- com.cmobilecom.af.entity.system.SystemException
-
- com.cmobilecom.af.model.bean.BackingBeanException
-
- com.cmobilecom.af.model.bean.InvalidDataSourceException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidDataSourceException extends BackingBeanException
InvalidDataSourceException: throw if entityDataSource is invalid for an entity or entity list backing bean.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.cmobilecom.af.util.ExecException
ExecException.Severity
-
-
Field Summary
-
Fields inherited from class com.cmobilecom.af.util.ExecException
localized, messageId, params, severity
-
-
Constructor Summary
Constructors Constructor Description InvalidDataSourceException(java.lang.String message)
Constructor.InvalidDataSourceException(java.lang.String messageId, java.lang.Object[] params)
Constructor.InvalidDataSourceException(java.lang.Throwable t)
Constructor: wrapper over a Throwable
-
Method Summary
-
Methods inherited from class com.cmobilecom.af.model.bean.BackingBeanException
formatParams, getMessage, getSource, setSource
-
Methods inherited from class com.cmobilecom.af.entity.system.SystemException
getParameterizedMessage
-
Methods inherited from class com.cmobilecom.af.util.ExecException
getLogLevel, getMessage, getMessageId, getParams, getRootCause, getSeverity, isLocalized, setSeverity
-
-
-
-
Constructor Detail
-
InvalidDataSourceException
public InvalidDataSourceException(java.lang.String message)
Constructor.- Parameters:
message
- a localized message. Resource bundle will not be used.
-
InvalidDataSourceException
public InvalidDataSourceException(java.lang.Throwable t)
Constructor: wrapper over a Throwable- Parameters:
t
- a Throwable
-
InvalidDataSourceException
public InvalidDataSourceException(java.lang.String messageId, java.lang.Object[] params)
Constructor. The messageId is not localized, resource bundle will be used to translate the message.- Parameters:
messageId
- message key in resource bundle whose value can contain parameters {n}.params
- an array of parameter values
-
-