Files
botAffilate/serverNode/node_modules/zca-js/dist/Errors/ZaloApiLoginQRAborted.js
T

8 lines
234 B
JavaScript

import { ZaloApiError } from "./ZaloApiError.js";
export class ZaloApiLoginQRAborted extends ZaloApiError {
constructor(message = "Operation aborted") {
super(message);
this.name = "ZaloApiLoginQRAborted";
}
}