From 084a68bb95c1d5b1e4159d59cd503c0485151b0a Mon Sep 17 00:00:00 2001 From: Freddy Daniel Rojas Valda Date: Tue, 21 Jan 2014 15:00:08 -0400 Subject: [PATCH] Se modifica el mensaje de error en dos GETS para Process supervisor --- workflow/engine/src/BusinessModel/ProcessSupervisor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/src/BusinessModel/ProcessSupervisor.php b/workflow/engine/src/BusinessModel/ProcessSupervisor.php index 209a7e13d..a77af47f8 100644 --- a/workflow/engine/src/BusinessModel/ProcessSupervisor.php +++ b/workflow/engine/src/BusinessModel/ProcessSupervisor.php @@ -622,7 +622,7 @@ class ProcessSupervisor { $oTypeDynaform = \DynaformPeer::retrieveByPK($sDynUID); if (is_null( $oTypeDynaform )) { - throw (new \Exception( 'This id: '. $sDynUID .' do not correspond to a registered Dynaform')); + throw (new \Exception( 'This id for `dyn_uid`: '. $sDynUID .' do not correspond to a registered Dynaform')); } $sDelimiter = \DBAdapter::getStringDelimiter(); $oCriteria = new \Criteria('workflow'); @@ -703,7 +703,7 @@ class ProcessSupervisor { $oTypeInputDocument= \InputDocumentPeer::retrieveByPK($sInputDocumentUID); if (is_null( $oTypeInputDocument )) { - throw (new \Exception( 'This id: '. $sInputDocumentUID .' do not correspond to a registered InputDocument')); + throw (new \Exception( 'This id for `inp_doc_uid`: '. $sInputDocumentUID .' do not correspond to a registered InputDocument')); } $sDelimiter = \DBAdapter::getStringDelimiter(); $oCriteria = new \Criteria('workflow');