Make NetworkProvider.getArea() throw IOException.

This commit is contained in:
Andreas Schildbach 2014-07-15 00:29:13 +02:00
parent f25ab9658c
commit defb006745

View file

@ -169,6 +169,7 @@ public interface NetworkProvider
* Gets the primary covered area of the network * Gets the primary covered area of the network
* *
* @return array containing points of a polygon (special case: just one coordinate defines just a center point) * @return array containing points of a polygon (special case: just one coordinate defines just a center point)
* @throws IOException
*/ */
Point[] getArea(); Point[] getArea() throws IOException;
} }