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