UNPKG

sip.js

Version:

A SIP library for JavaScript

11 lines (10 loc) 323 B
import { Exception } from "../../core/exceptions/exception.js"; /** * An exception indicating an invalid state transition error occured. * @public */ export class StateTransitionError extends Exception { constructor(message) { super(message ? message : "An error occurred during state transition."); } }