29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#endif
/**
* \param class_ The class of the object which caused the exception
* \param ptr A pointer to the memory that is not part of the object
* \return A new memory not part of object exception
*/
+ exceptionWithClass: (Class)class_
pointer: (void*)ptr;
/**
* Initializes an already allocated memory not part of object exception.
*
* \param class_ The class of the object which caused the exception
* \param ptr A pointer to the memory that is not part of the object
* \return An initialized memory not part of object exception
|
|
|
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#endif
/**
* \param class_ The class of the object which caused the exception
* \param ptr A pointer to the memory that is not part of the object
* \return A new memory not part of object exception
*/
+ (instancetype)exceptionWithClass: (Class)class_
pointer: (void*)ptr;
/**
* Initializes an already allocated memory not part of object exception.
*
* \param class_ The class of the object which caused the exception
* \param ptr A pointer to the memory that is not part of the object
* \return An initialized memory not part of object exception
|