} catch (GoogleJsonResponseException e) {
log.error("GoogleJsonResponseException code: "
+ e.getDetails().getCode() + " : "
+ e.getDetails().getMessage());
throw new KurentoException(e);
} catch (IOException e) {
log.error("IOException: " + e.getMessage());
throw new KurentoException(e);
} catch (Throwable t) {
log.error("Throwable: " + t.getMessage());
throw new KurentoException(t);
}
return uploadedVideo;
}