Yes, there is the SoapFault Exception! The problem is that the constructor does not throw it neither the base PHP Exception.
My code is as simple as this:
self::$_soapClient = new SoapClient(
$uriWSDL,
$arrOptions
);
I've tried the try ... catch ( SoapFault $e ) and the try ... catch ( Exception $e )
with no success.