Logo white

Peter M. Groen / knowledgetree

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • knowledgetree
  • webservice
  • classes
  • soap
  • WSException.class.php
  • I have added rest Interface. Added soap wsdl generation ...
    727adbe9
    This is a better way to generate WSDL and expose CMIS
    
    Committed by: Prince Mbekwa
    
    Reviewed by: Megan Watson
    Prince Mbekwa authored
    2009-06-01 17:09:00 +0200  
    Browse Code ยป
WSException.class.php 428 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php
/**
 * Exception class which can be thrown by
 * the WSHelper class.
 *@author KnowledgeTree Team
 *@package Webservice
 *@version Version 0.9
 */
class WSException extends Exception {
 	/**
 	 * @param string The error message
 	 * @return void
 	 */
	public function __construct($msg) {
		$this->msg = $msg;
	}
 	/**
 	 * @return void
 	 */
 	public function Display() {
		echo $this->msg;
	}
}
?>