![]() |
Lightstreamer iOS Client 1.2.6
Native iOS Client library for Lightstreamer
|
The LSException class is the base class of all Lightstreamer client exceptions. More...
#import <LSException.h>
Public Member Functions | |
(id) | - initWithName:reason: |
Initializes an LSException object with specified parameters. | |
(id) | - initWithName:reason:arguments: |
Initializes an LSException object with specified parameters. | |
Static Public Member Functions | |
(void) | + raiseWithName:reason: |
Creates and raises an LSException object with specified parameters. |
The LSException class is the base class of all Lightstreamer client exceptions.
May be thrown when a more specific exception would not apply.
- (id) initWithName: | (NSString *) | name | |
reason: | (NSString *) | reason | |
, | ... | ||
Initializes an LSException object with specified parameters.
name | Specific name of the exception. |
reason | Reason of the exception. |
- (id) initWithName: | (NSString *) | name | |
reason: | (NSString *) | reason | |
arguments: | (va_list) | arguments | |
Initializes an LSException object with specified parameters.
name | Specific name of the exception. |
reason | Reason of the exception. |
arguments | Variable argument list of parameters. |
+ (void) raiseWithName: | (NSString *) | name | |
reason: | (NSString *) | reason | |
, | ... | ||
Creates and raises an LSException object with specified parameters.
name | Specific name of the exception. |
reason | Reason of the exception. |