Differences From Artifact [b6bf1c09c7]:
- File src/exceptions/OFUnboundNamespaceException.m — part of check-in [c7adbcf399] at 2012-10-02 11:00:04 on branch trunk — Clean up properties in exceptions. (user: js, size: 2168) [annotate] [blame] [check-ins using]
To Artifact [0ff95d0b7b]:
- File src/exceptions/OFUnboundNamespaceException.m — part of check-in [7239333455] at 2012-10-03 15:41:10 on branch trunk — Move definition of restricted to OFObject.h. (user: js, size: 2188) [annotate] [blame] [check-ins using]
︙ | |||
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | + + | #include "config.h" #import "OFUnboundNamespaceException.h" #import "OFString.h" #import "OFNotImplementedException.h" #import "common.h" @implementation OFUnboundNamespaceException + exceptionWithClass: (Class)class_ namespace: (OFString*)ns { return [[[self alloc] initWithClass: class_ namespace: ns] autorelease]; |
︙ |