Changeset 595
- Timestamp:
- 04/22/07 03:11:17 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfFacade.php
r580 r595 43 43 { 44 44 try { 45 return call_user_ method_array($method, $this->realFacade, $arguments);45 return call_user_func_array(array($this->realFacade, $method), $arguments); 46 46 } catch (Exception $e) { 47 throw new stubXJConfException($e->getMessage , $e);47 throw new stubXJConfException($e->getMessage(), $e); 48 48 } 49 49 }
