Learn R Programming

gdalraster (version 1.11.1)

pop_error_handler: 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()

Arguments

Value

No return value, called for side effects.

See Also

push_error_handler()

Examples

Run this code
push_error_handler("quiet")
# ...
pop_error_handler()

Run the code above in your browser using DataLab