augnitoambientsdk
Version:
Use this typescript SDK to integrate Augnito’s Ambient Tech within your EMR. To get access credentials or know more about how Augnito Ambient can benefit you, please visit our website and connect with our sales team: https://augnito.ai/
10 lines • 349 B
text/typescript
export class HttpCodedError extends Error {
public code: string | undefined;
constructor(message: string, code: string) {
super(message);
this.code = code;
this.name = "HttpCodedError";
// 👇️ because we are extending a built-in class
Object.setPrototypeOf(this, HttpCodedError.prototype);
}
}