2025-11-05 17:04:23 -03:00

13 lines
232 B
JavaScript

import XMPPError from "@xmpp/error";
// https://xmpp.org/rfcs/rfc6120.html#sasl-errors
class SASLError extends XMPPError {
constructor(...args) {
super(...args);
this.name = "SASLError";
}
}
export default SASLError;