* but without location mapping. Throws RiotNotFoundException if not found.*/
public TypedInputStream openNoMap(String filenameOrURI)
{
TypedInputStream in = openNoMapOrNull(filenameOrURI) ;
if ( in == null )
throw new RiotNotFoundException(filenameOrURI) ;
return in ;
}