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.
No prerequisites for the update are needed.
Identify where the exception was thrown.
throw InvalidImpedanceDataException;
Replace this with the throwing a new InvalidImpedanceDataException object.
throw new InvalidImpedanceDataException();