This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/webservice/classes/soap/WSException.class.php

24 lines
405 B
PHP
Raw Permalink Normal View History

<?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;
}
}
?>