← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 11348: minor

 

------------------------------------------------------------
revno: 11348
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2013-07-05 13:45:03 +0700
message:
  minor
modified:
  dhis-2/dhis-web/dhis-web-api/src/main/java/org/hisp/dhis/api/controller/event/EventController.java


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== 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;
         }