pop_error_handler {gdalraster} | R Documentation |
Pop error handler off stack
Description
pop_error_handler()
is a wrapper for CPLPopErrorHandler()
in the GDAL
Common Portability Library.
Discards the current error handler on the error handler stack, and restores
the one in use before the last push_error_handler()
call. This method has
no effect if there are no error handlers on the current thread's error
handler stack.
Usage
pop_error_handler()
Value
No return value, called for side effects.
See Also
Examples
push_error_handler("quiet")
# ...
pop_error_handler()
[Package gdalraster version 1.11.1 Index]