RtcConnectionError.js 190 B

1234567
  1. import XverseError from "./XverseError.js"
  2. export default class RtcConnectionError extends XverseError {
  3. constructor(e) {
  4. super(2008, e || "RTC\u5EFA\u8054\u5931\u8D25")
  5. }
  6. }