# Hi, guys, how can I know wich is the real type of an exception? # I have the following code: type Error = ref object of CatchableError kind: string try: raise Error(kind: "hi") except CatchableError: let e = getCurrentException() echo typeof(e) # This prints `ref Exception` to me, but I want to know if this is an `Error` # instead, what should I do?