Interface InvalidCurrentPasswordError

All Superinterfaces:
ErrorObject

public interface InvalidCurrentPasswordError extends ErrorObject

Returned when the current password of the Customer does not match.

The error is returned as a failed response to:


Example to create an instance using the builder pattern

     InvalidCurrentPasswordError invalidCurrentPasswordError = InvalidCurrentPasswordError.builder()
             .message("{message}")
             .build()