SICIException Protocol Reference

Conforms to NSObject
Declared in SICIException.h

Overview

Exposes method to deal with exception It has methods to set exception class name, exception method name, exception message.

– getClassName required method

Get exception class name

- (NSString *)getClassName

Return Value

Exception Class Name

Discussion

Get exception class name

Declared In

SICIException.h

– setClassName: required method

Set exception class name

- (void)setClassName:(NSString *const)className

Parameters

className

Name of exception class

Discussion

Set exception class name

Declared In

SICIException.h

– getMethodName required method

Get exception method name

- (NSString *)getMethodName

Return Value

Name of exception method

Discussion

Get exception method name

Declared In

SICIException.h

– setMethodName: required method

Set exception method name

- (void)setMethodName:(NSString *const)methodName

Parameters

methodName

Name of method

Discussion

Set exception method name

Declared In

SICIException.h

– getMessage required method

Get exception message

- (NSString *)getMessage

Return Value

Exception message

Discussion

Get exception message

Declared In

SICIException.h

– setMessage: required method

Set exception message

- (void)setMessage:(NSString *const)message

Parameters

message

Exception message

Discussion

Set exception message

Declared In

SICIException.h