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

13 lines
240 B
JavaScript

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