oracle.owb.reconcile
Class IncompatibleTypesException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--oracle.owb.reconcile.IncompatibleTypesException
- All Implemented Interfaces:
- java.io.Serializable
- public class IncompatibleTypesException
- extends java.lang.Exception
IncompatibleTypesException is thrown by the reconcile service when the target type cannot be reconciled with the source type .
- See Also:
- Serialized Form
|
Field Summary |
protected java.lang.String |
m_msg
the string containing the exception message. |
protected ReconcileSource |
m_source
The source object passed to the reconcile framework. |
protected ReconcileTarget |
m_target
The target object passed to the reconcile framework. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
| Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
m_source
protected ReconcileSource m_source
- The source object passed to the reconcile framework.
m_target
protected ReconcileTarget m_target
- The target object passed to the reconcile framework.
m_msg
protected java.lang.String m_msg
- the string containing the exception message.
IncompatibleTypesException
public IncompatibleTypesException(java.lang.String msg,
ReconcileSource src,
ReconcileTarget tgt)
- Constructor for IncompatibleTypesException.
- Parameters:
msg - - the exception message.src - - the source object passed to reconcile service.tgt - - the target object passed to reconcile service.
getMsg
public java.lang.String getMsg()
- Returns the exception message.
- Returns:
- String
getSource
public ReconcileSource getSource()
- Returns the source object passed to reconcile service.
- Returns:
- ReconcileSource
getTarget
public ReconcileTarget getTarget()
- Returns the target object passed to reconcile service.
- Returns:
- ReconcileTarget