Closed as not planned
Description
Describe the bug
HttpError
is no longer exported in 1.0.0
** Client Version **
1.0.0
To Reproduce
Prior to 1.0.0:
import * as k8s from '@kubernetes/client-node';
try {
// do something with k8s
} catch (e) {
if (e instanceof k8s.HttpError) {
console.error(e.body);
}
}
Expected behavior
If HttpError
is not exported, I would be happy to see any upgrade docs state what the replacement is.