@signnow/api-client
Version:
SignNow REST Service Wrapper
15 lines (14 loc) • 410 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SignNowApiException = void 0;
class SignNowApiException extends Error {
constructor(message, response) {
super(message);
this.response = response;
this.name = 'SignNowApiException';
}
getResponse() {
return this.response;
}
}
exports.SignNowApiException = SignNowApiException;
;