comparison Lib/IMPL/Web/Handler/RestController.pm @ 212:292226770180

bugfixes
author sergey
date Fri, 29 Jun 2012 19:24:15 +0400
parents 3d433a977e3b
children d6e2ea24af08
comparison
equal deleted inserted replaced
211:2b9b55cfb79b 212:292226770180
59 while(@segments) { 59 while(@segments) {
60 my $id = shift @segments; 60 my $id = shift @segments;
61 61
62 $res = $res->FetchChildResource($id,$action); 62 $res = $res->FetchChildResource($id,$action);
63 63
64 die NotFoundException->new() unless $res; 64 die NotFoundException->new($pathInfo,$id) unless $res;
65 } 65 }
66 66
67 $res = $res->InvokeHttpMethod($method,$action); 67 $res = $res->InvokeHttpMethod($method,$action);
68 } 68 }
69 69