Exception type #24
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
We forgot to talk about exception types previously (or I forgot to note it down). I think the idea is to avoid storing any references so we can safely clone to a special heap for exception objects? (otherwise we may end up with https://github.com/m-labs/artiq/issues/1491 if we don't clone into a separate space)
Should we require the users to inherit from a certain subclass for exceptions? This way we can easily check for such constrains.
That is fine for me, though I have one request: to leave the
NotImplementedError
in such a way that it results in a compile error. This is currently the case and is quite useful.