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
  • Reset mode to 644 ...
    95b34c8b
    Committed by: Megan Watson
    Reviewed by: JP Bauer
    Megan Watson authored
    2010-03-08 14:15:46 +0200  
    Browse Code ยป
WSException.class.php 405 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;
	}
}
?>