Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.9.1
-
None
-
Patch Available
Description
This is annoying because it makes exception handling even harder than it already is.
namespace cocoa Namespace /** * Structs can also be exceptions, if they are nasty. */ exception InvalidOperation { 1: i32 what, 2: string why }
@implementation NamespaceInvalidOperation - (id) init { return [super initWithName: @"InvalidOperation" reason: @"unknown" userInfo: nil]; }