@sap/xssec
Version:
XS Advanced Container Security API for node.js
11 lines (8 loc) • 331 B
JavaScript
const ConfigurationError = require("./ConfigurationError");
class InvalidCredentialsError extends ConfigurationError {
constructor(message = "The service credentials are missing mandatory properties.") {
super(message);
this.name = "InvalidCredentialsError";
}
}
module.exports = InvalidCredentialsError;