IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 14, 2004, 10:01:52 AM (22 years ago)
Author:
desonia
Message:

Updated files in src/collections to use new psError functionality. Also
cleaned up the code where needed, removing unnecessary error conditions,
etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psCollectionsErrors.dat

    r1762 r1807  
    77#  N.B. in code, the ERRORNAME appears as PS_ERRORTEXT_ERRORNAME
    88####################################################################
    9 psVector_NALLOC_NOT_POSITIVE    Parameter nalloc (%d) must be positive.
     9#
     10psVector_REALLOC_NULL                  psVectorRealloc must a given a non-NULL psVector to resize.  Desired datatype unknown.
     11psVector_SORT_NULL                     psVectorSort can not sort a NULL psVector.
     12psVector_UNSUPPORTED_TYPE              Input psVector is an unsupported type (%d).
     13#
     14psBitSet_ALLOC_NEG_SIZE                The number of bit in a psBitSet (%d) must be greater than zero.
     15psBitSet_SET_NULL                      Can not operate on a NULL psBitSet.
     16psBitSet_BIT_OUTOFRANGE                The specified bit position (%d) is invalid.  Position must be between 0 and %d.
     17psBitSet_OPERATOR_NULL                 Specified operator is NULL.  Must specify desired operator.
     18psBitSet_OPERATOR_INVALID              Specified operator, %s, is invalid.  Valid operators are AND, OR, and XOR.
     19psBitSet_FIRST_OPERAND_NULL            First psBitSet operand can not be NULL.
     20psBitSet_SECOND_OPERAND_NULL           Second psBitSet operand can not be NULL.
     21psBitSet_OPERANDS_SIZE_DIFFER          The psBitSet operand must be the same size.
     22psBitSet_NOT_OP_FAILED                 Could not perform NOT operation.
     23psBitSet_OPERAND_NULL                  Operand can not be NULL.
     24#
     25psScalar_UNSUPPORTED_TYPE              Specified datatype (%d) is unsupported by psScalar.
     26psScalar_COPY_NULL                     Can not copy a NULL psScalar.
Note: See TracChangeset for help on using the changeset viewer.