That authLink at this point is just a variable name that you assigned to it.
What you have is a link that adds an authorization header, but that’s all the functionality it has - there is no implicit or hidden logic added on top of that.
If you want to handle any kind of errors, you will probably need an ErrorLink.
But again, giving a variable a name doesn’t make something magical happen. You will need to actually use an ErrorLink instance, not just a variable with that name and a string as a content.
Variable names hold no meaning in JavaScript, and Apollo Client has no way of knowing what names you assign to variables. Apollo Client only see the values inside of the variables.
The variable names are just there so you can read the code better, and choosing the names is up to you, but has no runtime consequence.