assureDioException static method
Implementation
@internal
static DioException assureDioException(
Object error,
RequestOptions requestOptions,
) {
if (error is DioException) {
return error;
}
return DioException(
requestOptions: requestOptions,
error: error,
);
}