=== modified file 'dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/event/EventController.java' --- dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/event/EventController.java 2013-07-05 06:34:10 +0000 +++ dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/event/EventController.java 2013-07-05 06:45:03 +0000 @@ -144,7 +144,7 @@ if ( event == null ) { - ContextUtils.notFoundResponse( response, "Event could not be found." ); + ContextUtils.notFoundResponse( response, "Event not found for uid: " + uid ); return; } @@ -159,7 +159,7 @@ if ( event == null ) { - ContextUtils.notFoundResponse( response, "Event could not be found." ); + ContextUtils.notFoundResponse( response, "Event not found for uid: " + uid ); return; } @@ -174,7 +174,7 @@ if ( event == null ) { - ContextUtils.notFoundResponse( response, "Event could not be found." ); + ContextUtils.notFoundResponse( response, "Event not found for uid: " + uid ); return; }