} catch (RuntimeException e) {
logger.caught(e);
String message = "The WSDL does not conform to the invoking service: "
+ this.serviceInformation;
this.notifier.invocationFailed(message, e);
throw new XBayaException(message, e);
} catch (Error e) {
logger.caught(e);
String message = "Unexpected error: " + this.serviceInformation;
this.notifier.invocationFailed(message, e);
throw new XBayaException(message, e);
}
}