Add catch ...

This commit is contained in:
Paulo Gustavo Veiga 2013-03-24 19:24:24 -03:00
parent a60f001f2c
commit c12b73c1ff

View File

@ -142,6 +142,7 @@ public class AdminController extends BaseController {
continue;
}
try {
// Iterate over the list of maps ...
final List<Collaboration> collaborations = mindmapService.findCollaborations(user);
for (Collaboration collaboration : collaborations) {
@ -164,6 +165,13 @@ public class AdminController extends BaseController {
}
}
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
} catch (WiseMappingException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
} catch (RuntimeException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
}