raster.input: touchup error output

This commit is contained in:
Dane Springmeyer 2011-04-13 17:50:40 +00:00
parent 9bfecac34e
commit 8fa2c6b4da

View file

@ -83,7 +83,7 @@ raster_datasource::raster_datasource(const parameters& params, bool bind)
}
if (! extent_initialized_)
throw datasource_exception("Raster Plugin: valid <lox> <loy> <hix> <hiy>, or <extent> are required");
throw datasource_exception("Raster Plugin: valid <extent> or <lox> <loy> <hix> <hiy> are required");
if (bind)
{
@ -113,7 +113,7 @@ void raster_datasource::bind() const
}
catch (mapnik::image_reader_exception const& ex)
{
std::cerr << "Raster Plugin: image reader exception caught:" << ex.what() << std::endl;
std::cerr << "Raster Plugin: image reader exception caught: " << ex.what() << std::endl;
throw;
}
catch (...)