UNPKG

sip.js

Version:

A SIP library for JavaScript

11 lines (10 loc) 292 B
import { Exception } from "../../core/exceptions/exception.js"; /** * An exception indicating the session terminated before the action completed. * @public */ export class SessionTerminatedError extends Exception { constructor() { super("The session has terminated."); } }