ObjFW  Diff

Differences From Artifact [aeaa01bea3]:

To Artifact [6c06e4e596]:


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#import "OFException.h"

/*!
 * @brief An exception indicating that the argument is invalid for this method.
 */
@interface OFInvalidArgumentException: OFException
{
	SEL selector;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly) SEL selector;
#endif

/*!







|







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#import "OFException.h"

/*!
 * @brief An exception indicating that the argument is invalid for this method.
 */
@interface OFInvalidArgumentException: OFException
{
	SEL _selector;
}

#ifdef OF_HAVE_PROPERTIES
@property (readonly) SEL selector;
#endif

/*!