Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 312 → Rev 313

/impl/src/java/pt/estgp/estgweb/web/WebProxy.java
76,7 → 76,8
}
catch(FileNotFoundException e)
{
throw new FileNotFoundException("url not found for server:" + server + " and path:" + path);
logger.warn("url not found for server:" + server + " and path:" + path);
response.sendError(404);
}
catch(Exception e)
{
85,7 → 86,8
}
else
{
throw new FileNotFoundException("url not found for server:" + server + " and path:" + path);
logger.warn("url not found for server:" + server + " and path:" + path);
response.sendError(404);
}
 
}