265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
265
266
267
268
269
270
271
272
273
274
275
276
277
278
|
-
-
-
-
-
-
-
-
-
-
-
-
-
|
- (const char*)cString
{
if (string != NULL)
return string;
asprintf(&string, "Initialization failed for class %s!", [class name]);
return string;
}
@end
@implementation OFNotInSetException
- (const char*)cString
{
if (string != NULL)
return string;
asprintf(&string, "The requested key is not in the set of type %s!",
[class name]);
return string;
}
@end
@implementation OFOpenFileFailedException
+ newWithClass: (Class)class_
andPath: (const char*)path_
|