202203204205206207208209
public String getPathAbsoluta(String pathRelativoRecibo) throws SVNControladorException { try { return this.repositorio.getPathAbsoluta(pathRelativoRecibo); } catch(Exception exception) { throw new SVNControladorException(exception); } }
225226227228229230231232233
} }); } catch(Exception exception) { throw new SVNControladorException(exception); } return lista; }
240241242243244245246247
try { return this.repositorio.getEntry(path, revisionRecibo); } catch(Exception exception) { throw new SVNControladorException(exception); } }
250251252253254255256257
public void getEntradaRevisionAnterior(SVNEntrada entradaRecibo) throws SVNControladorException { try { this.repositorio.diferencias(entradaRecibo); } catch (Exception exception) { exception.printStackTrace(); throw new SVNControladorException(exception); } }
306307308309310311312313
try { return this.repositorio.logAnterior(entrada, desdeRevisionRecibo); } catch (Exception exception) { exception.printStackTrace(); throw new SVNControladorException(exception); } }
643644645646647648649650
public File getFichero(String rutaFichero, long revision) throws SVNControladorException { try { return repositorio.getFichero(rutaFichero, revision); } catch (Exception exception) { throw new SVNControladorException(exception); } }
658659660661662663664665
try { return repositorio.getFichero(entrada.getPath(), revision); } catch (Exception exception) { SVNError error = SVNError.getError(SVNError.ERROR_OBTENER_FICHERO, exception); getLogger().error(error); throw new SVNControladorException(error); } }