notification.writeTo( fos );
fos.close( );
}
catch ( MalformedURLException murle )
{
throw new EmitterException( MSG.getMessage( Keys.EX_FAILED_TO_STORE_NOTIFICATION_TO_FILE_BAD_URL,
getDestinationUrl( ) ), murle );
}
catch ( IOException ioe )
{
throw new EmitterException( MSG.getMessage( Keys.EX_FAILED_TO_STORE_NOTIFICATION_TO_FILE,
getDestinationUrl( ) ), ioe );
}
catch ( SOAPException e )
{
throw new EmitterException( MSG.getMessage( Keys.EX_FAILED_TO_STORE_NOTIFICATION_TO_FILE,
getDestinationUrl( ) ), e );
}
return;
}