UNPKG

node-appwrite

Version:

Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API

10 lines (9 loc) 223 B
class AppwriteException extends Error { constructor(message, code, type, response) { super(message); this.code = code; this.type = type; this.response = response; } } module.exports = AppwriteException;