Click or drag to resize

Updating AxisValue plugins

The RelaxISPlugin_AxisValue type has not changed significantly. The shared object InvalidImpedanceDataException was removed and replaced with the InvalidImpedanceDataException class.

The previous shared exception field in this class was not a correct implementation and was instead replaced with the custom exception type InvalidImpedanceDataException.

This exception should be thrown when invalid data is encountered in the calculation function.

Prerequisites

No prerequisites for the update are needed.

If you previously threw the shared InvalidImpedanceDataException field

Perform these steps to update the plugin

  • Identify where the exception was thrown.

    C#
    throw InvalidImpedanceDataException;

    Replace this with the throwing a new InvalidImpedanceDataException object.

    C#
    throw new InvalidImpedanceDataException();
See Also