UNPKG

@thinkdeep/k8s

Version:

K8s node client for processing template string yaml configurations instead of value assignment to k8s javascript client object properties (i.e, V1CronJob).

20 lines (16 loc) 369 B
/** * Represents an error case in which a resource is not found. */ class ErrorNotFound extends Error { /** * Construct an error object. * * @param {String} message Error message. */ constructor(message) { super(message); this.name = this.constructor.name; Error.captureStackTrace(this, this.constructor); } } export {ErrorNotFound};