For me, this happened when I referenced my view incorrectly in my routes.
I had:
.when('/route', {
templateUrl: 'views/myPage.html',
controller : 'myCtrl'
})
but my view was named views/mypage.html
The error message is not what I would expect. I would have expected a missing view error.