@@ -19,10 +19,15 @@ #import "OFOpenItemFailedException.h" #import "OFString.h" @implementation OFOpenItemFailedException @synthesize path = _path, mode = _mode, errNo = _errNo; + ++ (instancetype)exception +{ + OF_UNRECOGNIZED_SELECTOR +} + (instancetype)exceptionWithPath: (OFString *)path { return [[[self alloc] initWithPath: path] autorelease]; }