Exporting the type is not enough. You need to mark the fields you want to 
export with an * too. So, here, put an * after "extraData":
    
    
    type myModuleException* = ref object of Exception
      extraData* : uint32
    
    
    Run

Reply via email to