raster.input: touchup error output
This commit is contained in:
parent
9bfecac34e
commit
8fa2c6b4da
1 changed files with 2 additions and 2 deletions
|
@ -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 (...)
|
||||
|
|
Loading…
Reference in a new issue