(PHP 5 >= 5.0.1)
SoapFault::__construct — SoapFault-Konstruktor
Diese Funktion ist ein Alias für: SoapFault::SoapFault()
The first Parameter of the constructor, the faultcode, of SoapFault must be a string. Otherwise it will lead to an error.
<?php
throw new SoapFault(1, "Error message!"); // wrong
throw new SoapFault("1", "Error message!"); // right
?>