@@ -213,12 +213,9 @@ public abstract class UWSServlet extends HttpServlet implements UWS, UWSFactory
...
@@ -213,12 +213,9 @@ public abstract class UWSServlet extends HttpServlet implements UWS, UWSFactory
// Set the file manager to use:
// Set the file manager to use:
try{
try{
fileManager=createFileManager();
fileManager=createFileManager();
if(fileManager==null){
if(fileManager==null)
logger.logUWS(LogLevel.FATAL,null,"INIT","Missing file manager! The function createFileManager() MUST return a valid instanceof UWSFileManager!",null);
thrownewServletException(INIT_ERROR_MSG);
thrownewServletException(INIT_ERROR_MSG);
}
}catch(UWSExceptionue){
}catch(UWSExceptionue){
logger.logUWS(LogLevel.FATAL,null,"INIT","Can't create a file manager!",ue);