4344454647484950
throws NotFoundException { Pet pet = petData.getPetbyId(ru.getLong(0, 100000, 0, petId)); if (null != pet) { return Response.ok().entity(pet).build(); } else { throw new NotFoundException(404, "Pet not found"); } }
100101102103104105106107
throws ApiException { User user = userData.findUserByName(username); if (null != user) { return Response.ok().entity(user).build(); } else { throw new NotFoundException(404, "User not found"); } }
throws NotFoundException { Order order = storeData.findOrderById(ru.getLong(0, 10000, 0, orderId)); if (null != order) { return Response.ok().entity(order).build(); } else { throw new NotFoundException(404, "Order not found"); } }
96979899100101102103
4243444546474849
7374757677787980
3536373839404142