Compare commits

..

1 Commits

Author SHA1 Message Date
Vitaliy Filippov 23062dde58 Move base64 handling into antietcd.js 2024-06-12 14:48:03 +03:00
1 changed files with 1 additions and 2 deletions

View File

@ -1,11 +1,10 @@
// (c) Vitaliy Filippov, 2024
// License: Mozilla Public License 2.0 or Vitastor Network Public License 1.1
class RequestError extends Error
class RequestError
{
constructor(code, text, details)
{
super();
this.code = code;
this.message = text;
this.details = details;