We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d9aa84 commit 0778eecCopy full SHA for 0778eec
README.md
@@ -43,12 +43,12 @@ async function sendEmail() {
43
});
44
45
console.log('Email API call successful:', response.message);
46
- } catch (error) {
+ } catch (error: any) {
47
console.error('Failed to send email:', error.message);
48
49
if (error instanceof PoodleError) {
50
console.error('Status Code:', error.statusCode);
51
- console.error('Details:', error.details);
+ console.error('Specific Details:', error.details);
52
}
53
54
0 commit comments