Does well-known checked version of NoSuchElementException exists in standard Java?
My primary motive is clearly communicating method behaviour and so force developer to handle situation where NoSuchElementException is thrown.
Edit: As answers suggest, NoSuchElementException is Exception, an Error. In my case "Object not found" situation is valid behavior. So with that in mind, I came with another solution, using Optional. It's the most direct way to communicate possibility of returning "Object not found".