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/WSDLException.class.php

26 lines
464 B
PHP

<?php
/**
* Exception class which can be thrown by
* the WSDLStruct class.
*
*@author KnowledgeTree Team
*@package Webservice
*@version Version 0.9
*/
class WSDLException extends Exception {
/**
* @param string The error message
* @return void
*/
function __construct($msg) {
$this->msg = $msg;
}
/**
* @return void
*/
function Display() {
print "Error creating WSDL document:".$this->msg;
//var_dump(debug_backtrace());
}
}
?>