![]() |
API
0.9.6
|
Used to implement exception handling (creating & raising). More...
#import <CPException.h>
Inheritance diagram for CPException:Class Methods | |
| (id) | + alloc |
| (CPException) | + exceptionWithName:reason:userInfo: |
| (void) | + raise:reason: |
Class Methods inherited from CPObject | |
| (BOOL) | + accessInstanceVariablesDirectly |
| (id) | + allocWithCoder: |
| (BOOL) | + automaticallyNotifiesObserversForKey: |
| (Class) | + class |
| (void) | + exposeBinding: |
| (void) | + initialize |
| (IMP) | + instanceMethodForSelector: |
| (BOOL) | + instancesRespondToSelector: |
| (BOOL) | + isSubclassOfClass: |
| (CPSet) | + keyPathsForValuesAffectingValueForKey: |
| (void) | + load |
| (id) | + new |
| (void) | + setVersion: |
| (Class) | + superclass |
| (int) | + version |
Additional Inherited Members | |
Instance Variables inherited from CPObject | |
| Class | isa |
Used to implement exception handling (creating & raising).
An example of throwing an exception in Objective-J:
// some code here...
if (input == nil)
[CPException raise:"MyException" reason:"You didn't do something right."];// code that gets executed if no exception was raised
Definition at line 2 of file CPException.h.
|
implementation |
Allocates a new instance of the receiving class
Reimplemented from CPObject.
Definition at line 51 of file CPException.j.
|
implementation |
Makes a deep copy of the receiver. The copy should be functionally equivalent to the receiver.
Reimplemented from CPObject.
Provided by category CPException(CPCopying).
Definition at line 156 of file CPException.j.
|
implementation |
Returns the exception's reason.
Reimplemented from CPObject.
Definition at line 128 of file CPException.j.
|
implementation |
Encodes the exception's data into a coder.
| aCoder | the coder to which the data will be written |
Provided by category CPException(CPCoding).
Definition at line 190 of file CPException.j.
|
implementation |
Creates an exception with a name, reason and user info.
| aName | the name of the exception |
| aReason | the reason the exception occurred |
| aUserInfo | a dictionary containing information about the exception |
Definition at line 75 of file CPException.j.
|
implementation |
Initializes the exception with data from a coder.
| aCoder | the coder from which to read the exception data |
Provided by category CPException(CPCoding).
Definition at line 174 of file CPException.j.
|
implementation |
Initializes the exception.
| aName | the name of the exception |
| aReason | the reason for the exception |
| aUserInfo | a dictionary containing information about the exception |
Definition at line 87 of file CPException.j.
|
implementation |
Determines if anObject is functionally equivalent to the receiver.
YES if anObject is functionally equivalent to the receiver. Reimplemented from CPObject.
Definition at line 141 of file CPException.j.
|
implementation |
Returns the name of the exception.
Definition at line 104 of file CPException.j.
|
implementation |
Raises the exception and causes the program to go to the exception handler.
Definition at line 136 of file CPException.j.
Raises an exception with a name and reason.
| aName | the name of the exception to raise |
| aReason | the reason for the exception |
Definition at line 63 of file CPException.j.
|
implementation |
Returns the reason for the exception.
Definition at line 112 of file CPException.j.
|
implementation |
Returns data containing info about the receiver.
Definition at line 120 of file CPException.j.