DOKK / manpages / debian 11 / tcllib / tcllib_throw.3tcl.en
throw(3tcl) Forward compatibility implementation of [throw] throw(3tcl)


throw - throw - Throw an error exception with a message

package require Tcl 8.5

package require throw ?1?

::throw error_code error_message


This package provides a forward-compatibility implementation of Tcl 8.6's throw command (TIP 329), for Tcl 8.5. The code was directly pulled from Tcl 8.6 revision ?, when try/finally was implemented as Tcl procedure instead of in C.

::throw error_code error_message
throw is merely a reordering of the arguments of the error command. It throws an error with the indicated error code and error message.

throw {MYERROR CODE} "My error message"

This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category try of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist]. Please also report any ideas for enhancements you may have for either package and/or documentation.

When proposing code changes, please provide unified diffs, i.e the output of diff -u.

Note further that attachments are strongly preferred over inlined patches. Attachments can be made by going to the Edit form of the ticket immediately after its creation, and then using the left-most button in the secondary navigation bar.

error(3tcl)

error, return, throw

Utility

Copyright (c) 2015 Miguel Martínez López, BSD licensed
1 tcllib