|
Samond Classes Library 1.1.6-RELEASE build 132
|
Collection exception class. More...
#import <SCCollectionException.h>
Collection exception class.
Exception generates when collection error detected.
Class was introduced in version 1.1.3.
Class declares the following properties:
| - (SCULong) capacity |
Returns the collection capacity.
| - (SCULong) collectionCount |
Returns the collection count.
| - (NSString *) collectionName |
Returns the collection name.
| + (SCCollectionException *) exception |
Returns the generic collection exception created by using the default error description.
| + (SCCollectionException *) exceptionWithCapacity: | (SCULong) | capacity |
Returns the overflow exception created by using the specified collection capacity.
| capacity | - collection capacity |
| + (SCCollectionException *) exceptionWithCapacity: | (SCULong) | capacity | |
| reason: | (NSString *) | reason | |
Returns the overflow exception created by using the specified collection capacity and error description.
| capacity | - collection capacity |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCapacityCollection: | (NSString *) | collection |
Returns the overflow exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithCapacityCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the overflow exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection |
Returns the generic collection exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| capacity: | (SCULong) | capacity | |
Returns the overflow exception created by using the specified collection name and collection capacity.
| collection | - collection name |
| capacity | - collection capacity |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| capacity: | (SCULong) | capacity | |
| reason: | (NSString *) | reason | |
Returns the overflow exception created by using the specified collection name, collection capacity and error description.
| collection | - collection name |
| capacity | - collection capacity |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| index: | (SCIndex) | index | |
Returns the incorrect index exception created by using the specified collection name and incorrect index.
| collection | - collection name |
| index | - incorrect index |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| index: | (SCIndex) | index | |
| reason: | (NSString *) | reason | |
Returns the incorrect index exception created by using the specified collection name, incorrect index and error description.
| collection | - collection name |
| index | - incorrect index |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| indexSet: | (NSIndexSet *) | indexes | |
Returns the incorrect index set exception created by using the specified collection name and index set.
| collection | - collection name |
| indexes | - index set |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| indexSet: | (NSIndexSet *) | indexes | |
| reason: | (NSString *) | reason | |
Returns the incorrect index set exception created by using the specified collection name, index set and error description.
| collection | - collection name |
| indexes | - index set |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| notFoundKey: | (NSString *) | key | |
Returns the key not found exception created by using the specified collection name and key.
| collection | - collection name |
| key | - not matched key |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| notFoundKey: | (NSString *) | key | |
| reason: | (NSString *) | reason | |
Returns the key not found exception created by using the specified collection name, key and error description.
| collection | - collection name |
| key | - not matched key |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| range: | (NSRange) | range | |
Returns the incorrect range exception created by using the specified collection name and incorrect range.
| collection | - collection name |
| range | - incorrect range |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| range: | (NSRange) | range | |
| reason: | (NSString *) | reason | |
Returns the incorrect range exception created by using the specified collection name, incorrect range and error description.
| collection | - collection name |
| range | - incorrect range |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the generic collection exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| type: | (SCCollectionError) | type | |
Returns the generic collection exception created by using the specified collection name and exception type.
| collection | - collection name |
| type | - exception type |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| type: | (SCCollectionError) | type | |
| reason: | (NSString *) | reason | |
Returns the generic collection exception created by using the specified collection name, exception type and error description.
| collection | - collection name |
| type | - exception type |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
Returns the unexpected class exception created by using the specified collection name and unexpected class name.
| collection | - collection name |
| unexpected | - unexpected class name |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
Returns the unexpected class exception created by using the specified collection name, unexpected class name and expected class name.
| collection | - collection name |
| unexpected | - unexpected class name |
| expected | - expected class name |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
| reason: | (NSString *) | reason | |
Returns the unexpected class exception created by using the specified collection name, unexpected class name, expected class name and error description.
| collection | - collection name |
| unexpected | - unexpected class name |
| expected | - expected class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
| reason: | (NSString *) | reason | |
Returns the unexpected class exception created by using the specified collection name, unexpected class name and error description.
| collection | - collection name |
| unexpected | - unexpected class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unknownClass: | (NSString *) | name | |
Returns the unknown class exception created by using the specified collection name and unknown class name.
| collection | - collection name |
| name | - unknown class name |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unknownClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Returns the unknown class exception created by using the specified collection name, unknown class name and error description.
| collection | - collection name |
| name | - unknown class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unsupportedClass: | (NSString *) | name | |
Returns the unsupported class exception created by using the specified collection name and unsupported class name.
| collection | - collection name |
| name | - unsupported class name |
| + (SCCollectionException *) exceptionWithCollection: | (NSString *) | collection | |
| unsupportedClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Returns the unsupported class exception created by using the specified collection name, unsupported class name and error description.
| collection | - collection name |
| name | - unsupported class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithCollectionCapacity |
Returns the overflow exception created by using the default error description.
| + (SCCollectionException *) exceptionWithCollectionCapacityReason: | (NSString *) | reason |
Returns the overflow exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmpty |
Returns the empty collection exception created by using the default error description.
| + (SCCollectionException *) exceptionWithEmptyCollection: | (NSString *) | collection |
Returns the empty collection exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithEmptyCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the empty collection exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmptyItem |
Returns the empty item exception created by using the default error description.
| + (SCCollectionException *) exceptionWithEmptyItemInCollection: | (NSString *) | collection |
Returns the empty item exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithEmptyItemInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the empty item exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmptyItemReason: | (NSString *) | reason |
Returns the empty item exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmptyKey |
Returns the empty collection key exception created by using the default error description.
| + (SCCollectionException *) exceptionWithEmptyKeyInCollection: | (NSString *) | collection |
Returns the empty collection key exception created by using the specified collection name and default error description.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithEmptyKeyInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the empty collection key exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmptyKeyReason: | (NSString *) | reason |
Returns the empty collection key exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmptyReason: | (NSString *) | reason |
Returns the empty collection exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmptyValue |
Returns the empty value exception created by using the default error description.
| + (SCCollectionException *) exceptionWithEmptyValueInCollection: | (NSString *) | collection |
Returns the empty value exception created by using the specified collection name and error default description.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithEmptyValueInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the empty value exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithEmptyValueReason: | (NSString *) | reason |
Returns the empty value exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithIncorrectAlgorithm |
Returns the incorrect sorting algorithm exception created by using the default error description.
| + (SCCollectionException *) exceptionWithIncorrectAlgorithmForCollection: | (NSString *) | collection |
Returns the incorrect sorting algorithm exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithIncorrectAlgorithmForCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the incorrect sorting algorithm exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithIncorrectAlgorithmReason: | (NSString *) | reason |
Returns the incorrect sorting algorithm exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithIndex: | (SCIndex) | index |
Returns the incorrect index exception created by using the specified incorrect index.
| index | - incorrect index |
| + (SCCollectionException *) exceptionWithIndex: | (SCIndex) | index | |
| reason: | (NSString *) | reason | |
Returns the incorrect index exception created by using the specified incorrect index and error description.
| index | - incorrect index |
| reason | - error description |
| + (SCCollectionException *) exceptionWithIndexSet: | (NSIndexSet *) | indexes |
Returns the incorrect index set exception created by using the specified index set.
| indexes | - index set |
| + (SCCollectionException *) exceptionWithIndexSet: | (NSIndexSet *) | indexes | |
| reason: | (NSString *) | reason | |
Returns the incorrect index set exception created by using the specified index set and error description.
| indexes | - index set |
| reason | - error description |
| + (SCCollectionException *) exceptionWithIndexSetCount: | (SCULong) | icount | |
| collectionCount: | (SCULong) | ccount | |
Returns the incorrect index set count exception created by using the specified index set count and collection count.
| icount | - index set count |
| ccount | - collection count |
| + (SCCollectionException *) exceptionWithIndexSetCount: | (SCULong) | icount | |
| collectionCount: | (SCULong) | ccount | |
| reason: | (NSString *) | reason | |
Returns the incorrect index set count exception created by using the specified index set count, collection count and error description.
| icount | - index set count |
| ccount | - collection count |
| reason | - error description |
| + (SCCollectionException *) exceptionWithNilAlgorithm |
Returns the nil sorting algorithm exception created by using the default error description.
| + (SCCollectionException *) exceptionWithNilAlgorithmForCollection: | (NSString *) | collection |
Returns the nil sorting algorithm exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithNilAlgorithmForCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the nil sorting algorithm exception created by using the specified collection name end error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithNilAlgorithmReason: | (NSString *) | reason |
Returns the nil sorting algorithm exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithNilIndexSet |
Returns the nil index set exception created by using the default error description.
| + (SCCollectionException *) exceptionWithNilIndexSetReason: | (NSString *) | reason |
Returns the nil index set exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithNilSource |
Returns the nil source exception created by using the default error description.
| + (SCCollectionException *) exceptionWithNilSourceReason: | (NSString *) | reason |
Returns the nil source exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithNotComparableObjects |
Returns the not comparable objects exception created by using the default error description.
| + (SCCollectionException *) exceptionWithNotComparableObjectsInCollection: | (NSString *) | collection |
Returns the not comparable objects exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithNotComparableObjectsInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the not comparable objects exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithNotComparableObjectsReason: | (NSString *) | reason |
Returns the not comparable objects exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithNotFoundKey: | (NSString *) | key |
Returns the key not found exception created by using the specified key and default error description.
| key | - not matched key |
| + (SCCollectionException *) exceptionWithNotFoundKey: | (NSString *) | key | |
| reason: | (NSString *) | reason | |
Returns the key not found exception created by using the specified key and error description.
| key | - not matched key |
| reason | - error description |
| + (SCCollectionException *) exceptionWithNotSortableClass: | (NSString *) | name |
Returns the not sortable class exception created by using the specified class name.
| name | - not sortable class name |
| + (SCCollectionException *) exceptionWithNotSortableClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Returns the not sortable class exception created by using the specified class name and error description.
| name | - not sortable class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithRange: | (NSRange) | range |
Returns the incorrect range exception created by using the specified incorrect range.
| range | - incorrect range |
| + (SCCollectionException *) exceptionWithRange: | (NSRange) | range | |
| reason: | (NSString *) | reason | |
Returns the incorrect range exception created by using the specified incorrect range and error description.
| range | - incorrect range |
| reason | - error description |
| + (SCCollectionException *) exceptionWithReadOnly |
Returns the collection read only exception created by using the default error description.
| + (SCCollectionException *) exceptionWithReadOnlyCollection: | (NSString *) | collection |
Returns the collection read only exception created by using the specified collection name.
| collection | - collection name |
| + (SCCollectionException *) exceptionWithReadOnlyCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Returns the collection read only exception created by using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithReadOnlyReason: | (NSString *) | reason |
Returns the collection read only exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithReason: | (NSString *) | reason |
Returns the generic collection exception created by using the specified error description.
| reason | - error description |
| + (SCCollectionException *) exceptionWithType: | (SCCollectionError) | type |
Returns the generic collection exception created by using the specified exception type.
| type | - exception type |
| + (SCCollectionException *) exceptionWithType: | (SCCollectionError) | type | |
| reason: | (NSString *) | reason | |
Returns the generic collection exception created by using the specified exception type and error description.
| type | - exception type |
| reason | - error description |
| + (SCCollectionException *) exceptionWithUnexpected: | (NSString *) | unexpected |
Returns the unexpected class exception created by using the specified unexpected class name.
| unexpected | - unexpected class name |
| + (SCCollectionException *) exceptionWithUnexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
Returns the unexpected class exception created by using the specified unexpected class name and expected class name.
| unexpected | - unexpected class name |
| expected | - expected class name |
| + (SCCollectionException *) exceptionWithUnexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
| reason: | (NSString *) | reason | |
Returns the unexpected class exception created by using the specified unexpected class name, expected class name and error description.
| unexpected | - unexpected class name |
| expected | - expected class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithUnexpected: | (NSString *) | unexpected | |
| reason: | (NSString *) | reason | |
Returns the unexpected class exception created by using the specified unexpected class name and error description.
| unexpected | - unexpected class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithUnknownClass: | (NSString *) | name |
Returns the unknown class exception created by using the specified unknown class name.
| name | - unknown class name |
| + (SCCollectionException *) exceptionWithUnknownClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Returns the unknown class exception created by using the specified unknown class name and error description.
| name | - unknown class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithUnsupportedClass: | (NSString *) | name |
Returns the unsupported class exception created by using the specified unsupported class name.
| name | - unsupported class name |
| + (SCCollectionException *) exceptionWithUnsupportedClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Returns the unsupported class exception created by using the specified unsupported class name and error description.
| name | - unsupported class name |
| reason | - error description |
| + (SCCollectionException *) exceptionWithUnsupportedType: | (NSString *) | type |
Returns the unsupported collection type exception created by using the specified unsupported type name.
| type | - unsupported type name |
| + (SCCollectionException *) exceptionWithUnsupportedType: | (NSString *) | type | |
| reason: | (NSString *) | reason | |
Returns the unsupported collection type exception created by using the specified unsupported type name and error description.
| type | - unsupported type name |
| reason | - error description |
| - (NSString *) expected |
Returns the expected class name.
| - (SCIndex) index |
Returns the incorrect index.
| - (NSIndexSet *) indexSet |
Returns the incorrect index set.
| - (SCULong) indexSetCount |
Returns the index set count.
| - (id) init |
Initializes the generic collection exception using the default error description.
| - (id) initWithCapacity: | (SCULong) | capacity |
Initializes the overflow exception using the specified collection capacity.
| capacity | - collection capacity |
| - (id) initWithCapacity: | (SCULong) | capacity | |
| reason: | (NSString *) | reason | |
Initializes the overflow exception using the specified collection capacity and error description.
| capacity | - collection capacity |
| reason | - error description |
| - (id) initWithCapacityCollection: | (NSString *) | collection |
Initializes the overflow exception using the specified collection name.
| collection | - collection name |
| - (id) initWithCapacityCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the overflow exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection |
Initializes the generic collection exception using the specified collection name.
| collection | - collection name |
| - (id) initWithCollection: | (NSString *) | collection | |
| capacity: | (SCULong) | capacity | |
Initializes the overflow exception using the specified collection name and collection capacity.
| collection | - collection name |
| capacity | - collection capacity |
| - (id) initWithCollection: | (NSString *) | collection | |
| capacity: | (SCULong) | capacity | |
| reason: | (NSString *) | reason | |
Initializes the overflow exception using the specified collection name, collection capacity and error description.
| collection | - collection name |
| capacity | - collection capacity |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| index: | (SCIndex) | index | |
Initializes the incorrect index exception using the specified collection name and incorrect index.
| collection | - collection name |
| index | - incorrect index |
| - (id) initWithCollection: | (NSString *) | collection | |
| index: | (SCIndex) | index | |
| reason: | (NSString *) | reason | |
Initializes the incorrect index exception using the specified collection name, incorrect index and error description.
| collection | - collection name |
| index | - incorrect index |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| indexSet: | (NSIndexSet *) | indexes | |
Initializes the incorrect index set exception using the specified collection name and index set.
| collection | - collection name |
| indexes | - index set |
| - (id) initWithCollection: | (NSString *) | collection | |
| indexSet: | (NSIndexSet *) | indexes | |
| reason: | (NSString *) | reason | |
Initializes the incorrect index set exception using the specified collection name, index set and error description.
| collection | - collection name |
| indexes | - index set |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| notFoundKey: | (NSString *) | key | |
Initializes the key not found exception using the specified collection name and key.
| collection | - collection name |
| key | - not matched key |
| - (id) initWithCollection: | (NSString *) | collection | |
| notFoundKey: | (NSString *) | key | |
| reason: | (NSString *) | reason | |
Initializes the key not found exception using the specified collection name, key and error description.
| collection | - collection name |
| key | - not matched key |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| range: | (NSRange) | range | |
Initializes the incorrect range exception using the specified collection name and incorrect range.
| collection | - collection name |
| range | - incorrect range |
| - (id) initWithCollection: | (NSString *) | collection | |
| range: | (NSRange) | range | |
| reason: | (NSString *) | reason | |
Initializes the incorrect range exception using the specified collection name, incorrect range and error description.
| collection | - collection name |
| range | - incorrect range |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the generic collection exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| type: | (SCCollectionError) | type | |
Initializes the generic collection exception using the specified collection name and exception type.
| collection | - collection name |
| type | - exception type |
| - (id) initWithCollection: | (NSString *) | collection | |
| type: | (SCCollectionError) | type | |
| reason: | (NSString *) | reason | |
Initializes the generic collection exception using the specified collection name, exception type and error description.
| collection | - collection name |
| type | - exception type |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
Initializes the unexpected class exception using the specified collection name and unexpected class name.
| collection | - collection name |
| unexpected | - unexpected class name |
| - (id) initWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
Initializes the unexpected class exception using the specified collection name, unexpected class name and expected class name.
| collection | - collection name |
| unexpected | - unexpected class name |
| expected | - expected class name |
| - (id) initWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
| reason: | (NSString *) | reason | |
Initializes the unexpected class exception using the specified collection name, unexpected class name, expected class name and error description.
| collection | - collection name |
| unexpected | - unexpected class name |
| expected | - expected class name |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| unexpected: | (NSString *) | unexpected | |
| reason: | (NSString *) | reason | |
Initializes the unexpected class exception using the specified collection name, unexpected class name and error description.
| collection | - collection name |
| unexpected | - unexpected class name |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| unknownClass: | (NSString *) | name | |
Initializes the unknown class exception using the specified collection name and unknown class name.
| collection | - collection name |
| name | - unknown class name |
| - (id) initWithCollection: | (NSString *) | collection | |
| unknownClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Initializes the unknown class exception using the specified collection name, unknown class name and error description.
| collection | - collection name |
| name | - unknown class name |
| reason | - error description |
| - (id) initWithCollection: | (NSString *) | collection | |
| unsupportedClass: | (NSString *) | name | |
Initializes the unsupported class exception using the specified collection name and unsupported class name.
| collection | - collection name |
| name | - unsupported class name |
| - (id) initWithCollection: | (NSString *) | collection | |
| unsupportedClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Initializes the unsupported class exception using the specified collection name, unsupported class name and error description.
| collection | - collection name |
| name | - unsupported class name |
| reason | - error description |
| - (id) initWithCollectionCapacity |
Initializes the overflow exception using the default error description.
| - (id) initWithCollectionCapacityReason: | (NSString *) | reason |
Initializes the overflow exception using the specified error description.
| reason | - error description |
| - (id) initWithEmpty |
Initializes the empty collection exception using the default error description.
| - (id) initWithEmptyCollection: | (NSString *) | collection |
Initializes the empty collection exception using the specified collection name.
| collection | - collection name |
| - (id) initWithEmptyCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the empty collection exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithEmptyItem |
Initializes the empty item exception using the default error description.
| - (id) initWithEmptyItemInCollection: | (NSString *) | collection |
Initializes the empty item exception using the specified collection name.
| collection | - collection name |
| - (id) initWithEmptyItemInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the empty item exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithEmptyItemReason: | (NSString *) | reason |
Initializes the empty item exception using the specified error description.
| reason | - error description |
| - (id) initWithEmptyKey |
Initializes the empty collection key exception using the default error description.
| - (id) initWithEmptyKeyInCollection: | (NSString *) | collection |
Initializes the empty collection key exception using the specified collection name and default error description.
| collection | - collection name |
| - (id) initWithEmptyKeyInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the empty collection key exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithEmptyKeyReason: | (NSString *) | reason |
Initializes the empty collection key exception using the specified error description.
| reason | - error description |
| - (id) initWithEmptyReason: | (NSString *) | reason |
Initializes the empty collection exception using the specified error description.
| reason | - error description |
| - (id) initWithEmptyValue |
Initializes the empty value exception using the default error description.
| - (id) initWithEmptyValueInCollection: | (NSString *) | collection |
Initializes the empty value exception using the specified collection name and default error description.
| collection | - collection name |
| - (id) initWithEmptyValueInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the empty value exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithEmptyValueReason: | (NSString *) | reason |
Initializes the empty value exception using the specified error description.
| reason | - error description |
| - (id) initWithIncorrectAlgorithm |
Initializes the incorrect sorting algorithm exception using the default error description.
| - (id) initWithIncorrectAlgorithmForCollection: | (NSString *) | collection |
Initializes the incorrect sorting algorithm exception using the specified collection name.
| collection | - collection name |
| - (id) initWithIncorrectAlgorithmForCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the incorrect sorting algorithm exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithIncorrectAlgorithmReason: | (NSString *) | reason |
Initializes the incorrect sorting algorithm exception using the specified error description.
| reason | - error description |
| - (id) initWithIndex: | (SCIndex) | index |
Initializes the incorrect index exception using the specified incorrect index.
| index | - incorrect index |
| - (id) initWithIndex: | (SCIndex) | index | |
| reason: | (NSString *) | reason | |
Initializes the incorrect index exception using the specified incorrect index and error description.
| index | - incorrect index |
| reason | - error description |
| - (id) initWithIndexSet: | (NSIndexSet *) | indexes |
Initializes the incorrect index set exception using the specified index set.
| indexes | - index set |
| - (id) initWithIndexSet: | (NSIndexSet *) | indexes | |
| reason: | (NSString *) | reason | |
Initializes the incorrect index set exception using the specified index set and error description.
| indexes | - index set |
| reason | - error description |
Initializes the incorrect index set count exception using the specified index set count and collection count.
| icount | - index set count |
| ccount | - collection count |
| - (id) initWithIndexSetCount: | (SCULong) | icount | |
| collectionCount: | (SCULong) | ccount | |
| reason: | (NSString *) | reason | |
Initializes the incorrect index set count exception using the specified index set count, collection count and error description.
| icount | - index set count |
| ccount | - collection count |
| reason | - error description |
| - (id) initWithNilAlgorithm |
Initializes the nil sorting algorithm exception using the default error description.
| - (id) initWithNilAlgorithmForCollection: | (NSString *) | collection |
Initializes the nil sorting algorithm exception using the specified collection name.
| collection | - collection name |
| - (id) initWithNilAlgorithmForCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the nil sorting algorithm exception using the specified collection name end error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithNilAlgorithmReason: | (NSString *) | reason |
Initializes the nil sorting algorithm exception using the specified error description.
| reason | - error description |
| - (id) initWithNilIndexSet |
Initializes the nil index set exception using the default error description.
| - (id) initWithNilIndexSetReason: | (NSString *) | reason |
Initializes the nil index set exception using the specified error description.
| reason | - error description |
| - (id) initWithNilSource |
Initializes the nil source exception using the default error description.
| - (id) initWithNilSourceReason: | (NSString *) | reason |
Initializes the nil source exception using the specified error description.
| reason | - error description |
| - (id) initWithNotComparableObjects |
Initialized the not comparable objects exception using the default error description.
| - (id) initWithNotComparableObjectsInCollection: | (NSString *) | collection |
Initialized the not comparable objects exception using the specified collection name.
| collection | - collection name |
| - (id) initWithNotComparableObjectsInCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initialized the not comparable objects exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithNotComparableObjectsReason: | (NSString *) | reason |
Initialized the not comparable objects exception using the specified error description.
| reason | - error description |
| - (id) initWithNotFoundKey: | (NSString *) | key |
Initializes the key not found exception using the specified key and default error description.
| key | - not matched key |
| - (id) initWithNotFoundKey: | (NSString *) | key | |
| reason: | (NSString *) | reason | |
Initializes the key not found exception using the specified key and error description.
| key | - not matched key |
| reason | - error description |
| - (id) initWithNotSortableClass: | (NSString *) | name |
Initializes the not sortable class exception using the specified class name.
| name | - not sortable class name |
| - (id) initWithNotSortableClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Initializes the not sortable class exception using the specified class name and error description.
| name | - not sortable class name |
| reason | - error description |
| - (id) initWithRange: | (NSRange) | range |
Initializes the incorrect range exception using the specified incorrect range.
| range | - incorrect range |
| - (id) initWithRange: | (NSRange) | range | |
| reason: | (NSString *) | reason | |
Initializes the incorrect range exception using the specified incorrect range and error description.
| range | - incorrect range |
| reason | - error description |
| - (id) initWithReadOnly |
Initializes the collection read only exception using the default error description.
| - (id) initWithReadOnlyCollection: | (NSString *) | collection |
Initializes the collection read only exception using the specified collection name.
| collection | - collection name |
| - (id) initWithReadOnlyCollection: | (NSString *) | collection | |
| reason: | (NSString *) | reason | |
Initializes the collection read only exception using the specified collection name and error description.
| collection | - collection name |
| reason | - error description |
| - (id) initWithReadOnlyReason: | (NSString *) | reason |
Initializes the collection read only exception using the specified error description.
| reason | - error description |
| - (id) initWithReason: | (NSString *) | reason |
Initializes the generic collection exception using the specified error description.
| reason | - error description |
| - (id) initWithType: | (SCCollectionError) | type |
Initializes the generic collection exception using the specified exception type.
| type | - exception type |
| - (id) initWithType: | (SCCollectionError) | type | |
| reason: | (NSString *) | reason | |
Initializes the generic collection exception using the specified exception type and error description.
| type | - exception type |
| reason | - error description |
| - (id) initWithUnexpected: | (NSString *) | unexpected |
Initializes the unexpected class exception using the specified unexpected class name.
| unexpected | - unexpected class name |
| - (id) initWithUnexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
Initializes the unexpected class exception using the specified unexpected class name and expected class name.
| unexpected | - unexpected class name |
| expected | - expected class name |
| - (id) initWithUnexpected: | (NSString *) | unexpected | |
| expected: | (NSString *) | expected | |
| reason: | (NSString *) | reason | |
Initializes the unexpected class exception using the specified unexpected class name, expected class name and error description.
| unexpected | - unexpected class name |
| expected | - expected class name |
| reason | - error description |
| - (id) initWithUnexpected: | (NSString *) | unexpected | |
| reason: | (NSString *) | reason | |
Initializes the unexpected class exception using the specified unexpected class name and error description.
| unexpected | - unexpected class name |
| reason | - error description |
| - (id) initWithUnknownClass: | (NSString *) | name |
Initializes the unknown class exception using the specified unknown class name.
| name | - unknown class name |
| - (id) initWithUnknownClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Initializes the unknown class exception using the specified unknown class name and error description.
| name | - unknown class name |
| reason | - error description |
| - (id) initWithUnsupportedClass: | (NSString *) | name |
Initializes the unsupported class exception using the specified unsupported class name.
| name | - unsupported class name |
| - (id) initWithUnsupportedClass: | (NSString *) | name | |
| reason: | (NSString *) | reason | |
Initializes the unsupported class exception using the specified unsupported class name and error description.
| name | - unsupported class name |
| reason | - error description |
| - (id) initWithUnsupportedType: | (NSString *) | type |
Initializes the unsupported collection type exception using the specified unsupported type name.
| type | - unsupported type name |
| - (id) initWithUnsupportedType: | (NSString *) | type | |
| reason: | (NSString *) | reason | |
Initializes the unsupported collection type exception using the specified unsupported type name and error description.
| type | - unsupported type name |
| reason | - error description |
| - (NSString *) key |
Returns the incorrect dictionary key.
| - (NSString *) notSortableClass |
Returns the not sortable class name.
| - (NSRange) range |
Returns the incorrect range.
| - (SCCollectionError) type |
Returns the collection exception type.
| - (NSString *) unexpected |
Returns the unexpected class name.
| - (NSString *) unknownClass |
Returns the unknown class name.
| - (NSString *) unsupportedClass |
Returns the unsupported class name.
| - (NSString *) unsupportedType |
Returns the unsupported collection type.
1.7.3